Mercurial > jmeCapture
view build.xml @ 10:4c5fc53778c1
moved randelshofer stuff to rightfull place, enabled XuggleVideoRecorder
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Wed, 26 Oct 2011 09:38:27 -0700 |
parents | 0e966c8a3e3d |
children | 8a6b1684f536 |
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"/>9 <path id="classpath">10 <pathelement path="${lib}/jme"/>11 <pathelement path="${lib}/lwjgl.jar"/>12 <pathelement path="${lib}/xuggle/xuggle-xuggler.jar"/>15 </path>17 <target name="prepare">18 <mkdir dir="${build}"/>19 </target>21 <target name="compile" depends="prepare" >22 <javac srcdir="${src}" destdir="${build}"23 classpathref="classpath"24 includeantruntime="false"/>25 </target>27 <target name="dist" depends="compile" >28 <mkdir dir="${dist}"/>29 <jar jarfile="${dist}/jmeCapture.jar" basedir="${build}"/>30 </target>32 <target name="clean" >33 <delete dir="${build}"/>34 <delete dir="${dist}"/>35 </target>38 </project>