diff options
author | Sven Gothel <[email protected]> | 2010-04-22 02:19:41 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-22 02:19:41 +0200 |
commit | 4cf06d157053039e916b822d2f20ee56f387a7cd (patch) | |
tree | 0ef1b2cbfac60c874b5aefefe73c82eb685adec7 /build.xml | |
parent | 112180c6e72b5916604fddfe8cadde21b46bb241 (diff) |
Add the property rootrel.build (used in gluegen/jogl)
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -5,6 +5,12 @@ <description>Builds, tests, and runs the project JOCL.</description> + <condition property="rootrel.build" value="build"> + <not> + <isset property="rootrel.build"/> + </not> + </condition> + <import file="nbproject/build-impl.xml"/> <property name="gluegen.root" value="../gluegen" /> @@ -243,7 +249,7 @@ windowtitle="${javadoc.windowtitle}"> <arg line="${javadoc.additionalparam} -J-Dnativetaglet.mapping=${basedir}/resources/native-taglet.properties"/> - <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/build/gluegen.jar:/home/jogamp/NetBeansProjects/JOGL/jocl/"/> + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/${rootrel.build}/gluegen.jar:/home/jogamp/NetBeansProjects/JOGL/jocl/"/> <classpath> <pathelement path="${javac.classpath}"/> @@ -263,4 +269,4 @@ </javadoc> </target> -</project>
\ No newline at end of file +</project> |