summaryrefslogtreecommitdiffstats
path: root/make/gluegen.properties
diff options
context:
space:
mode:
Diffstat (limited to 'make/gluegen.properties')
-rwxr-xr-xmake/gluegen.properties46
1 files changed, 27 insertions, 19 deletions
diff --git a/make/gluegen.properties b/make/gluegen.properties
index 8d667b4..2f319bc 100755
--- a/make/gluegen.properties
+++ b/make/gluegen.properties
@@ -13,13 +13,13 @@
# including the name of the jar
#
# Windows
-antlr.jar=C:/Users/kbr/ANTLR/antlr-2.7.2/antlr.jar
-# Linux
-# antlr.jar=/home/kbr/antlr-2.7.2/antlr.jar
+antlr.jar=C:/JOGL/lib/antlr-2.7.2.jar
+# Linux / Solaris / ..
+# antlr.jar=/home/sven/projects/JOGL/lib/antlr-2.7.7.jar
# Mac OS X
-# antlr.jar=/Users/kbr/antlr-2.7.2/antlr.jar
-# Solaris
-# antlr.jar=/export/kbr/ANTLR/antlr-2.7.2/antlr.jar
+# antlr.jar=/JOGL/lib/antlr-2.7.2.jar
+
+junit.jar=/home/sven/projects/JOGL/lib/junit-4.5.jar
# If you are building the native code for the GlueGen run-time library
# on Windows and have the Microsoft Visual C++ compilers installed,
@@ -28,19 +28,27 @@ antlr.jar=C:/Users/kbr/ANTLR/antlr-2.7.2/antlr.jar
# "mingw".
# win32.c.compiler=vc6
-# If you are building on a Mac OS X system supporting
-# cross-compilation and want to generate fat binaries containing
-# x86_64 code, uncomment the property below
-# macosx64=true
-
-# If you are building on a Mac OS X system supporting
-# cross-compilation and want to generate fat binaries containing
-# ppc code, uncomment the property below.
-# Note: Unsupported on Snow Leopard!
+# MacOsX libraries can be universal / fat binaries.
+# The following switches enables/disables a target platform.
+# If non of them is enabled, the default
+# compiler target platform is used for a thin binary.
+#
+# macosppc:
+# set to "true" for ppc support,
+# default is 'false'
+# Note: Unsupported on Snow Leopard!
# macosppc=true
+#
+# macosx32:
+# set to "false" to disable x86 32-bit support,
+# default is 'true'
+# macosx32=false
+#
+# macosx64:
+# set to "false" to disable x86 64-bit support,
+# default is 'true'
+# macosx64=false
+#
-# isX11 is selected for a platform where: !isWindows && !isOSX.
-# To avoid X11 related builds you need to set 'noX11' to true.
-# noX11=true
-#user.compiler.import="${user.home}/gluegen.compiler.xml"
+#gluegen-cpptasks.file="${user.home}/gluegen-cpptasks-linux-32bit.xml"