Difference between revisions of "Using Lazarus for other computer languages"

From Lazarus wiki
Jump to navigationJump to search
(category)
Line 78: Line 78:
  
 
* [[LCL Bindings]]
 
* [[LCL Bindings]]
 +
 +
[[Category:Lazarus]]

Revision as of 13:32, 15 April 2012

English (en) magyar (hu) русский (ru)

Lazarus is great for Free Pascal. But you can use the IDE for other languages too. This is useful to port C code or to edit cross multi tier applications, without the need to use different editors and reducing the trouble when switching between different sets of shortcuts and menu entries.

Syntax Highlighting

Lazarus comes with syntax highlighting for more than a dozen languages. The language is guessed from the file extension. The colors can be setup in the editor options.

If your language is not yet there, you can either use one of the existing highlighters by extending the list of file extensions in the editor options. Or you can create your own highlighter and send us the new highlighter. The easiest way to create a new highlighter is to copy an existing file in lazarus/components/synedit/. The highlighter units all begin with 'synhighlighter', for example synhighlighterphp.pp is the php highlighter.

Hint: You can quick switch the syntax highlighter for a file via the popup menu of the source editor. Just right click / file settings / highlighter.

Compilation

To setup the compile command there are three possibilities:

1. Create a new shortcut

You can create a new shortcut and a menu item, that starts an external program with Tools / Configure Custom Tools / Add.

For example to invoke 'make' to compile via Makefile:

  • Title: Build via make
  • Programfilename: $MakeExe(make)
  • Parameters:
  • Working Directory: $ProjPath()
  • Options: all disabled
  • Key: choose one or leave untouched

The MakeExe macro function appends the file extension '.exe' under windows. The ProjPath macro is replaced by the current project directory - the directory where the .lpi file is.

Pros

  • Works for all projects. No need to setup for every new project.

Cons

  • The same command and parameters for all projects. Individuality must be achieved by calling a script.

2. Replace the compile command of the project

When you press F9 or Ctrl-F9 the IDE checks if something has changed and invokes the compiler. The compiler is normally FPC, but you can replace that with a command of your choice.

Open Project / Compiler Options / Compilation. Then disable in the Compiler box all options Compile, Build and Run. Then write the new command in the Execute before box and enable Show all messages.

For example to invoke 'make' to compile via Makefile:

$MakeExe(make)

The MakeExe macro function appends the file extension '.exe' under windows. The working directory is always the project directory - where the .lpi file is.

Pros

  • Command is stored in the .lpi file, so project can easily be distributed and copied to other machines.
  • Only invoked if a file is changed.
  • Required Packages are auto compiled before.

Cons

  • Must be copied to every new project.

3. Define a compile command for a single file

Normally when pressing F9 or Ctrl-F9 the IDE compiles a project. But you can override this behavior for each file in a project via Run / Configure Build+Run file.

This works pretty much like the two above examples.

Pros

  • Good for mixed source projects. For example a pascal project with one or more files in another language.
  • These settings are stored for pascal sources as IDE directives directly in the pascal source and since lazarus 0.9.25 for non pascal files it is stored in the project (.lpi file).

Cons

  • No update check. The called script/compiler must check itself if a build is needed.

See Also