diff 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
line wrap: on
line diff
     1.1 --- a/java/build.xml	Sat Jun 23 20:34:14 2012 -0500
     1.2 +++ b/java/build.xml	Sat Jun 23 23:10:31 2012 -0500
     1.3 @@ -5,6 +5,13 @@
     1.4    <property name="dist" value="dist"/>
     1.5    <property name="headers"  value="headers"/>
     1.6    <property name="artifacts" value="../artifacts"/>
     1.7 +  <property name="lib"  value="lib"/>
     1.8 +
     1.9 +  <path id="classpath">
    1.10 +    <pathelement path="${lib}/tritonus_aos-0.3.6.jar"/>
    1.11 +    <pathelement path="${lib}/tritonus_share-0.3.6.jar"/>
    1.12 +  </path>
    1.13 +
    1.14  
    1.15    <target name="prepare">
    1.16      <mkdir dir="${build}"/>
    1.17 @@ -14,6 +21,7 @@
    1.18  
    1.19    <target name="compile" depends="prepare" >
    1.20      <javac srcdir="${src}" destdir="${build}"
    1.21 +	   classpathref="classpath"
    1.22  	   includeantruntime="false"/>
    1.23    </target>
    1.24