summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-02-01 10:17:29 +0100
committerSven Gothel <[email protected]>2013-02-01 10:17:29 +0100
commitc284d9298dfdb7f94e2d81951e079393dfc8f785 (patch)
tree7adc446e64b453cb4553260b2282e42024302118 /make/build.xml
parent331da480af5943e00fbee3e3bf063b490db28fbf (diff)
Fix EFXFilter.java demo - Now we need to properly use ALExt, since AL does not contain duplicates anymore!
Diffstat (limited to 'make/build.xml')
-rwxr-xr-xmake/build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/build.xml b/make/build.xml
index ef3064c..3a895da 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -65,7 +65,7 @@
<property name="gluegen-rt.jar" value="${gluegen.build}/gluegen-rt.jar" />
<property name="joal.jar" value="${joal.build}/joal.jar" />
- <property name="src.dir" value="../src" />
+ <property name="src.dir" value="../src/java" />
<property name="classes.dir" value="${build}/classes" />
<property name="joal.demos.jar" value="${build}/joal-demos.jar" />
@@ -113,7 +113,7 @@
<target name="jar" depends="compile" description="Build JOAL demos jar file">
<jar destfile="${joal.demos.jar}">
<fileset dir="${classes.dir}" />
- <fileset dir="${src.dir}/java">
+ <fileset dir="${src.dir}">
<include name="demos/data/**" />
</fileset>
</jar>
@@ -123,7 +123,7 @@
<mkdir dir="${classes.dir}" />
<copy todir="${build}">
- <fileset dir="${src.dir}/java/demos/lib" includes="j-ogg-*.jar" />
+ <fileset dir="${src.dir}/demos/lib" includes="j-ogg-*.jar" />
</copy>
<path id="joal.classpath">