aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/inpath/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/harness/inpath/build.xml')
-rw-r--r--tests/harness/inpath/build.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/harness/inpath/build.xml b/tests/harness/inpath/build.xml
new file mode 100644
index 000000000..21e378070
--- /dev/null
+++ b/tests/harness/inpath/build.xml
@@ -0,0 +1,11 @@
+
+<project name="inpath-test" default="all" basedir=".">
+
+
+ <target name="all" description="build classes">
+ <property name="dest.dir" location="${basedir}/input-path-classes"/>
+ <property name="src.dir" location="${basedir}/input-path-src"/>
+ <javac destdir="${dest.dir}" srcdir="${src.dir}"/>
+ </target>
+
+</project>