diff options
author | Sven Gothel <[email protected]> | 2014-01-25 18:49:41 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-25 18:49:41 +0100 |
commit | ac84afd26ad3b34851a423fb90e6c819b9dc9495 (patch) | |
tree | b532f1a190c5703547315153ef234cf3b5752575 /make/build.xml | |
parent | 52a1b51d7281640ed525d07fe22d14de54b398d0 (diff) |
build.xml: Fix jogl.build: Use [passed or default] jogl.build as well as rootrel.build (as gluegen does)
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index 8a5f6596..6cd885b2 100644 --- a/make/build.xml +++ b/make/build.xml @@ -101,8 +101,9 @@ <property name="gluegen.jar" value="${gluegen.build}/gluegen.jar" /> <property name="gluegen-rt.jar" value="${gluegen.build}/gluegen-rt.jar" /> - <property name="jogl.build" value="${project.root}/../jogl/build" /> - <property name="jogl-all.jar" value="${jogl.build}/jar/jogl-all.jar" /> + <property name="jogl.root" value="${project.root}/../jogl" /> + <property name="jogl.build" value="${jogl.root}/${rootrel.build}" /> + <property name="jogl-all.jar" value="${jogl.build}/jar/jogl-all.jar" /> <!-- Create the classpath that includes GlueGen and - ANTLR. This requires the user-defined "antlr.jar" |