summarylogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJed Liu2015-07-01 15:49:39 -0400
committerJed Liu2015-07-01 15:49:39 -0400
commitdc16f027911c364a27bdede9a1d4c37258d0a818 (patch)
treee516cd888262e1c71ae275590dfdd7e5e7497897 /build.xml
downloadaur-ib-jts.tar.gz
Initial import: 971.01-1
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 000000000000..9730f4565095
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" ?>
+<!-- Configuration of the Ant build system to generate a Jar file -->
+<project name="TestMain" default="CreateJar">
+ <target name="CreateJar" description="Create Jar file" depends="build">
+ <jar jarfile="javaclient.jar" basedir="bin" includes="**/*.class" />
+ </target>
+ <target name="build" description="Compile the Java IB-TWS client">
+ <mkdir dir="bin"/>
+ <javac srcdir="source/JavaClient" destdir="bin"/>
+ </target>
+</project>