-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
44 lines (35 loc) · 1.31 KB
/
build.xml
File metadata and controls
44 lines (35 loc) · 1.31 KB
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
34
35
36
37
38
39
40
41
42
43
<project name="Audiolizer" default="run" basedir=".">
<description>
Cute little ant file to build the Audiolizer applet using the JSyn natural Java library
</description>
<property name="src" location="src"/>
<property name="lib" value="lib"/>
<property name="main-class" value="com.mattfeury.audiolizer.Audiolizer"/>
<property name="build.dir" location="target"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<path id="classpath">
<fileset dir="${lib}" includes="*.jar"/>
</path>
<target name="init" depends="clean">
<tstamp/>
<mkdir dir="${classes.dir}"/>
</target>
<target name="compile" depends="init" description="compile the source " >
<javac srcdir="${src}" destdir="${classes.dir}" classpathref="classpath"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
</target>
<target name="clean" description="clean up" >
<delete dir="${build.dir}"/>
</target>
</project>