-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.xml
33 lines (27 loc) · 971 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
30
31
32
33
<project name="phono-java-audio" default="build">
<property environment="env" />
<target name="jar" depends="clean">
<mkdir dir="target"/>
<mkdir dir="build/lib/classes"/>
<javac destdir="build/lib/classes" target="1.8">
<src path="src/main/java" />
</javac>
<jar destfile="target/srtplight.jar" basedir="build/lib/classes">
</jar>
</target>
<target name="build" depends="jar">
<!-- Binary -->
</target>
<target name="clean">
<delete dir="target" />
<delete dir="build" />
</target>
<target name="run-selected-file-in-java">
<fail unless="run.class">Must set property 'run.class'</fail>
<java classname="${run.class}" failonerror="true" fork="true">
<classpath>
<!-- TODO configure the runtime classpath for your project here: -->
</classpath>
</java>
</target>
</project>