diff options
author | Kenneth Russel <[email protected]> | 2006-01-14 02:34:55 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-01-14 02:34:55 +0000 |
commit | 34b87617a677ae67078074fb37dce1cbc8080eec (patch) | |
tree | f2e3c25992dbd82a68c1ef9ff0b6319d9eee9d1f /make/jogl.properties | |
parent | 2fde37ab9889f65096d13119b5ac9da8035d8194 (diff) |
Revised JOGL's build.xml to look more like JOAL's with autodetection
of OS and CPU. Added default "all" target. It is now no longer
necessary to use the win32.vc6, etc. targets unless on Windows the
jogl.properties file is old and does not contain the win32.c.compiler
property. The nightly build setup will be adjusted for this and these
now-unnecessary targets will be deleted in a subsequent checkin.
Tested builds on Windows, Solaris and Mac OS X.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@540 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/jogl.properties')
-rw-r--r-- | make/jogl.properties | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/make/jogl.properties b/make/jogl.properties index b5e14d47a..104d40092 100644 --- a/make/jogl.properties +++ b/make/jogl.properties @@ -24,12 +24,16 @@ # Solaris # antlr.jar=/export/kbr/ANTLR/antlr-2.7.2/antlr.jar -# -# Force the use of jikes in +E (emacs) mode -# NOTE: this is optional -# -#build.compiler=jikes -#build.compiler.emacs=true +# If you are building on Windows and have the Microsoft Visual C++ +# compilers installed, you can choose an alternate compiler with which +# to build the JOGL native code. Valid strings here are "vc6", "vc7", +# "vc8", and "mingw". +win32.c.compiler=vc6 + +# If you are building on a Mac OS X system supporting +# cross-compilation and want to generate fat (PPC and x86) binaries, +# uncomment the property below +# macosxfat=true # # If you are building the Cg binding (by specifying -Djogl.cg=1 to the |