aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorHolger Zickner <[email protected]>2004-07-08 20:24:48 +0000
committerHolger Zickner <[email protected]>2004-07-08 20:24:48 +0000
commit252832999fa43bce63ca4b643fab5d9dd51fccc4 (patch)
tree98570c65819059d14f0809ae964aa1c6c93684a0 /build.xml
parent4f13ea26c4f47e54e66926f0700cf631e7bb3352 (diff)
import of Jake2 version cebit
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index de8da32..30ff8e7 100644
--- a/build.xml
+++ b/build.xml
@@ -3,6 +3,7 @@
<!-- properties -->
<property name="src" location="src"/>
+ <property name="test" location="test"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
@@ -27,9 +28,10 @@
<!-- compile -->
<target name="compile" depends="init">
- <javac destdir="${build}" optimize="on" debug="off" source="1.4">
+ <javac destdir="${build}" optimize="on" debug="on" source="1.4">
<src path="${src}"/>
- <include name="jake2/Jake2.java"/>
+ <src path="${test}"/>
+ <include name="jake2/**"/>
<classpath refid="build.class.path"/>
</javac>
</target>