blob: 69602a5d3608701f106979fd413ceb86a4ad1c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
###############################################################################
# The host specific properties. The build will inform you of required
# properties. This file shall be copied into your home directory (pointed
# to by the Java system property user.home) and the copy modified appropriately.
#
# You may also specify the location of this file
# while setting the property 'gluegen.user.properties.file', ie:
# -Dgluegen.user.properties.file=`pwd`/lib/gluegen.properties
#
###############################################################################
#
# You may include a custom antlr.jar file in the antlr.jar property.
#
# Windows
# antlr.jar=C:/JOGL/lib/antlr-2.7.7.jar
# Linux / Solaris / ..
# antlr.jar=/home/sven/projects/JOGL/lib/antlr-2.7.7.jar
# Mac OS X
# antlr.jar=/JOGL/lib/antlr-2.7.7.jar
# You may include a custom junit.jar file in the junit.jar property.
#
# junit.jar=/home/sven/projects/JOGL/lib/junit.jar
# If you are building the native code for the GlueGen run-time library
# on Windows and have the Microsoft Visual C++ compilers installed,
# you can choose an alternate compiler with which to build the native
# code. Valid strings for MS compiler are "vc6", "vc7", "vc8", "vc8_x64", "vc9".
# Otherwise MinGW is used, hence the default value "mingw".
# win32.c.compiler=mingw
# 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
#
#gluegen-cpptasks.file="${user.home}/gluegen-cpptasks-linux-32bit.xml"
|