aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-common.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-28 01:10:31 +0200
committerSven Gothel <[email protected]>2010-04-28 01:10:31 +0200
commit3dae4b359e9494c34cc6056e43f1c835fca53100 (patch)
tree72423a77830af29355466a588a0d0c0924983472 /make/build-common.xml
parent897c7248f9895d828542d524b211b74efcc715d2 (diff)
Add custom.libdir property to sneak in eg a alt. GL lib
Diffstat (limited to 'make/build-common.xml')
-rw-r--r--make/build-common.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/make/build-common.xml b/make/build-common.xml
index 461e96f1f..bbc99b589 100644
--- a/make/build-common.xml
+++ b/make/build-common.xml
@@ -153,7 +153,11 @@
<property name="build.junit" value="${build}/test/build" />
<property name="obj.junit" value="${build.junit}/obj"/>
- <property name="obj.all.paths" value="${obj.gluegen}${path.separator}${obj.nativewindow}${path.separator}${obj.jogl}${path.separator}${obj.newt}${path.separator}${obj.junit}" />
+ <condition property="obj.custom" value="${custom.libdir}${path.separator}">
+ <isset property="custom.libdir"/>
+ </condition>
+
+ <property name="obj.all.paths" value="${obj.custom}${obj.gluegen}${path.separator}${obj.nativewindow}${path.separator}${obj.jogl}${path.separator}${obj.newt}${path.separator}${obj.junit}" />
<path id="gluegen.classpath">
<pathelement location="${gluegen.jar}" />