Documentation/Compiling: Unterschied zwischen den Versionen
Aus OpenDino
Dirk (Diskussion | Beiträge) (→Using an IDE) |
Dirk (Diskussion | Beiträge) (→Developing and Compiling OpenOpal) |
||
Zeile 1: | Zeile 1: | ||
− | |||
− | |||
Check the [[Documentation/Software/Requirements | software requirements]] first! Then [[Documentation/Download/SVN | download]] the source code. | Check the [[Documentation/Software/Requirements | software requirements]] first! Then [[Documentation/Download/SVN | download]] the source code. | ||
Version vom 18. März 2013, 22:50 Uhr
Check the software requirements first! Then download the source code.
Inhaltsverzeichnis
Using an IDE
OpenOpal is currently developed with NetBeans, as many windows are generated with the Swing framework.
However, other platforms such as Eclipse Eclipse can also be used.
Compiling and executing the software in a shell is also supported using Makefile
s 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