Documentation/Compiling

Aus OpenDino
Version vom 15. Februar 2013, 22:21 Uhr von Dirk (Diskussion | Beiträge) (Created page with "= Developing and Compiling OpenOpal = Check the software requirements first! Then download the source ...")
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

Developing and Compiling OpenOpal

Check the software requirements first! Then download the source code.

Using an IDE

OpenOpal is currently developed with NetBeans, however other platforms such as Eclipse Eclipse can also be used.

Nevertheless, compiling and executing the software in a shell is also supported using Makefiles as build system.

Compiling in a Shell

Two platforms are currently tested:

  • Linux: A typical standard implementation of Linux with a Java JDK should contain all required programs for compiling and running OpenOpal.
  • Windows: Cygwin (R) is used to compile OpenOpal on Windows(R) platforms.

Compiling on other platforms has not been tested.

Creating the Makefile

The Makefile is automatically generated by the script createMakefile. In a shell, go to the subfolder openopal/trunk and execute:

$ ./createMakefile

Enter

$ make

to list the possible actions.

Compiling the Source Code & Executing OpenOpal

For Linux systems enter

$ make javac
$ make gui

to compile and start OpenOpal in GUI mode.

For Windows systems enter

$ make javac_cygwin
$ make gui