aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index e0a6ea0..00d8ed5 100644
--- a/build.xml
+++ b/build.xml
@@ -19,7 +19,11 @@
<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
- <javac srcdir="${src}" destdir="${build}"/>
+ <javac srcdir="${src}" destdir="${build}">
+ <classpath>
+ <pathelement path="libs/jportaudio.jar"/>
+ </classpath>
+ </javac>
</target>
<target name="dist" depends="compile"