aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-oculusvr.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-25 10:18:56 +0200
committerSven Gothel <[email protected]>2014-06-25 10:18:56 +0200
commita515faf5e7d679b7ad87a05fa8fc81ab148bcd41 (patch)
tree299dec6843e76f6a61b6de96720505b9082dd64d /make/build-oculusvr.xml
parente1dc63254918092b1066983657194b198f6389e5 (diff)
Bug 1021: Enhance OVR GlueGen Mapping / Adapt to GlueGen commit 9ee44e1a289ecbac024662dd5a2ffc42e8add023 (Bug 1025)
Diffstat (limited to 'make/build-oculusvr.xml')
-rw-r--r--make/build-oculusvr.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/make/build-oculusvr.xml b/make/build-oculusvr.xml
index 7258c8ea0..e0e5c4c12 100644
--- a/make/build-oculusvr.xml
+++ b/make/build-oculusvr.xml
@@ -16,9 +16,9 @@
-->
<target name="partitioning.setup" depends="common.init">
<property name="java.part.oculusvr"
- value="com/jogamp/oculusvr/** jogamp/oculusvr/**"/>
+ value="com/jogamp/oculusvr/* jogamp/oculusvr/*"/>
<property name="java.part.oculusvr.exclude"
- value="" />
+ value="com/jogamp/oculusvr/renderer/*" />
</target>
<!-- ================================================================== -->
@@ -163,6 +163,7 @@
<target name="java.compile" depends="java.generate">
<!-- Perform the second pass Java compile; everything except portion of fixed function emulation depending on generated code. -->
<javac destdir="${classes}"
+ excludes="${java.part.oculusvr.exclude}"
fork="yes"
includeAntRuntime="false"
memoryMaximumSize="${javac.memorymax}"
@@ -171,7 +172,8 @@
target="${target.targetlevel}"
bootclasspath="${target.rt.jar}"
debug="${javacdebug}" debuglevel="${javacdebuglevel}">
- <classpath refid="nativewindow_gluegen.classpath"/>
+ <!-- classpath refid="nativewindow_gluegen.classpath"/ -->
+ <classpath refid="jogl_nativewindow_gluegen.classpath"/>
<src path="${src.java}" />
<src path="${src.generated.java}" />
</javac>