diff options
author | Sven Gothel <[email protected]> | 2013-01-31 08:20:46 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-31 08:20:46 +0100 |
commit | 7c47fc72f44f27979c1631247188d99a21576dc8 (patch) | |
tree | 9492d4d9f4f416057dc84cb759a0f224461f0814 /make/build.xml | |
parent | 4c0d4a51b981310b934a037426d2570f9b96dd34 (diff) |
Make AL/ALC types unique in their respective header file; Use GlueGen's stdint definition for all tested platforms
Diffstat (limited to 'make/build.xml')
-rwxr-xr-x | make/build.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/make/build.xml b/make/build.xml index 22f962a..99fbb37 100755 --- a/make/build.xml +++ b/make/build.xml @@ -160,6 +160,8 @@ <include name="*.java" /> <include name="*.c" /> </fileset> + <property name="stub.includes.gluegen.gg" value="${gluegen.root}/make/stub_includes/gluegen" /> + <property name="stub.includes.gluegen.cc" value="${gluegen.root}/make/stub_includes/platform" /> <!-- The resulting joal.jar. --> <property name="joal.jar" value="${build}/joal.jar" /> @@ -247,6 +249,7 @@ outputRootDir="${build}" config="${joal.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.procaddress.ProcAddressEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -256,6 +259,7 @@ outputRootDir="${build}" config="${joal.constants.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.JavaEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -265,6 +269,7 @@ outputRootDir="${build}" config="${joal.alc.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.procaddress.ProcAddressEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -274,6 +279,7 @@ outputRootDir="${build}" config="${joal.alc.constants.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.JavaEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -283,6 +289,7 @@ outputRootDir="${build}" config="${joal.alext.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.procaddress.ProcAddressEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -292,6 +299,7 @@ outputRootDir="${build}" config="${joal.alext.constants.cfg}" includeRefid="stub.includes.fileset.all" + literalInclude="${stub.includes.gluegen.gg}" emitter="com.jogamp.gluegen.JavaEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> @@ -375,6 +383,7 @@ <compiler extends="@{compiler.cfg.id}" > <sysincludepath path="${java.includes.dir}"/> <sysincludepath path="${java.includes.dir.platform}"/> + <sysincludepath path="${stub.includes.gluegen.cc}"/> <includepath path="stub_includes/openal"/> <!-- This is for the generated headers for handwritten C code --> <includepath path="${src.generated.c}" /> |