comparison java/build.xml @ 524:7ef5c73ea8fa

working on recording sound. almost have it, but there is still unexplained popping sounds.
author Robert McIntyre <rlm@mit.edu>
date Sat, 23 Jun 2012 23:10:31 -0500
parents 09b3bc0b71b5
children
comparison
equal deleted inserted replaced
523:d00096b6bf17 524:7ef5c73ea8fa
3 <property name="build" value="build"/> 3 <property name="build" value="build"/>
4 <property name="src" value="src"/> 4 <property name="src" value="src"/>
5 <property name="dist" value="dist"/> 5 <property name="dist" value="dist"/>
6 <property name="headers" value="headers"/> 6 <property name="headers" value="headers"/>
7 <property name="artifacts" value="../artifacts"/> 7 <property name="artifacts" value="../artifacts"/>
8 <property name="lib" value="lib"/>
9
10 <path id="classpath">
11 <pathelement path="${lib}/tritonus_aos-0.3.6.jar"/>
12 <pathelement path="${lib}/tritonus_share-0.3.6.jar"/>
13 </path>
14
8 15
9 <target name="prepare"> 16 <target name="prepare">
10 <mkdir dir="${build}"/> 17 <mkdir dir="${build}"/>
11 <mkdir dir="${headers}"/> 18 <mkdir dir="${headers}"/>
12 <mkdir dir="${dist}"/> 19 <mkdir dir="${dist}"/>
13 </target> 20 </target>
14 21
15 <target name="compile" depends="prepare" > 22 <target name="compile" depends="prepare" >
16 <javac srcdir="${src}" destdir="${build}" 23 <javac srcdir="${src}" destdir="${build}"
24 classpathref="classpath"
17 includeantruntime="false"/> 25 includeantruntime="false"/>
18 </target> 26 </target>
19 27
20 <target name="native" depends="prepare, compile" > 28 <target name="native" depends="prepare, compile" >
21 <javah class="com.aurellem.gb.Gb" 29 <javah class="com.aurellem.gb.Gb"