tests/build.xml
changeset 2353 fa7400d022a0
child 2380 9195eccdcbd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/build.xml	Sat Feb 16 19:08:45 2013 +0100
@@ -0,0 +1,33 @@
+<project name="tests" default="build">
+
+<property name="libraries.stx.libjava" value="../java/libs"/>
+<property name="libraries.stx.libjava.libs" value="../libs/java/libs"/>
+
+<path id="libjava-tests.classpath">
+    <fileset dir="${libraries.stx.libjava}">
+        <include name="**/*.jar"/>
+    </fileset>
+    <fileset dir="${libraries.stx.libjava.libs}">
+        <include name="**/*.jar"/>
+    </fileset>
+</path>
+
+  <target name="build">
+	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava">
+	  <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
+	</ant>
+
+	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava-mauve">
+
+	</ant>
+  </target>
+
+  <target name="clean">
+	<subant target="clean">
+	  <fileset dir="." includes="*/build.xml"/>
+	</subant>
+  </target>
+
+
+
+</project>