diff options
-rw-r--r-- | README.md | 13 | ||||
-rw-r--r-- | build.xml | 6 |
2 files changed, 18 insertions, 1 deletions
@@ -24,3 +24,16 @@ http://www.softsynth.com/jsyn/ Pre-compiled JSyn JAR files are at: http://www.softsynth.com/jsyn/developers/download.php + +To build JSyn, use ant. Just enter: + + cd jsyn + ant + +The resulting jar will be placed in "/dist/lib/". +To run the built-in test App on a desktop, enter something like this: + + java -jar dist/lib/jsyn-20160203.jar + +but with the correct date. + @@ -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" |