view build.xml @ 57:19831877eaed

updated build
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 19:51:47 -0600
parents 2f129118e2d6
children f2c5f1fca9a7
line wrap: on
line source
1 <project name="jmeCapture" default="dist" basedir=".">
4 <property name="build" value="build"/>
5 <property name="src" value="src"/>
6 <property name="dist" value="dist"/>
7 <property name="lib" value="lib"/>
11 <path id="classpath">
12 <pathelement path="${lib}/audio-send.jar"/>
13 <pathelement path="${lib}/commons-cli.jar"/>
14 <pathelement path="${lib}/jMonkeyEngine3.jar"/>
15 <pathelement path="${lib}/jME3-core.jar"/>
16 <pathelement path="${lib}/jME3-desktop.jar"/>
17 <pathelement path="${lib}/jME3-lwjgl.jar"/>
18 <pathelement path="${lib}/logback-classic.jar"/>
19 <pathelement path="${lib}/logback-core.jar"/>
20 <pathelement path="${lib}/lwjgl.jar"/>
21 <pathelement path="${lib}/slf4j-api.jar"/>
22 <pathelement path="${lib}/xuggle-xuggler.jar"/>
23 <pathelement path="${lib}/xuggle-xuggler-test.jar"/>
24 <pathelement path="${lib}/tritonus_aos-0.3.6.jar"/>
25 <pathelement path="${lib}/tritonus_share-0.3.6.jar"/>
26 </path>
28 <target name="prepare">
29 <mkdir dir="${build}"/>
30 </target>
32 <target name="compile" depends="prepare" >
33 <javac srcdir="${src}" destdir="${build}"
34 classpathref="classpath"
35 includeantruntime="false"/>
36 </target>
38 <target name="dist" depends="compile" >
39 <mkdir dir="${dist}"/>
40 <jar jarfile="${dist}/jmeCapture.jar">
41 <fileset dir="${src}"/>
42 <fileset dir="${build}"/>
43 </jar>
44 </target>
46 <target name="clean" >
47 <delete dir="${build}"/>
48 <delete dir="${dist}"/>
49 </target>
52 </project>