-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.xml
29 lines (24 loc) · 844 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<project name="UiMutilator" default="help">
<target name="clean">
<delete dir="bin"/>
</target>
<target name="compile">
<mkdir dir="bin"/>
<javac srcdir="src" destdir="bin"/>
</target>
<!-- Builds the command-tests.jar file used to actually run tests on device -->
<target name="command-tests">
<ant dir="command-tests" antfile="build.xml" target="build"/>
</target>
<target name="jar" depends="compile,command-tests">
<mkdir dir="build"/>
<jar destfile="build/UiMutilator.jar" basedir="bin">
<fileset dir="." includes="command-tests/bin/command-tests.jar"/>
</jar>
</target>
<!--
<target name="run">
<java jar="build/jar/HelloWorld.jar" fork="true"/>
</target> -->
</project>