summaryrefslogtreecommitdiff
path: root/testing/swt/build-swt.xml
diff options
context:
space:
mode:
Diffstat (limited to 'testing/swt/build-swt.xml')
-rw-r--r--testing/swt/build-swt.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/swt/build-swt.xml b/testing/swt/build-swt.xml
new file mode 100644
index 000000000..a161204f8
--- /dev/null
+++ b/testing/swt/build-swt.xml
@@ -0,0 +1,17 @@
+<project name="SWT" default="jar" basedir=".">
+ <property name="src" location="."/>
+ <property name="build" location="build"/>
+
+ <target name="init">
+ <tstamp/>
+ <mkdir dir="${build}"/>
+ </target>
+
+ <target name="compile" depends="init" description="Compile the SWT toolset">
+ <javac srcdir="${src}" destdir="${build}" target="1.6" />
+ </target>
+
+ <target name="jar">
+ <jar destfile="swt.jar" basedir="${build}"/>
+ </target>
+</project>