updated build files
[stereo.git] / Asunder / build.xml
blobab8bcabd4943c91d6a710ffa84e54331a7c0e43a
1 <?xml version="1.0" encoding="UTF-8"?>
3 <!DOCTYPE project [
4        <!ENTITY common SYSTEM "../common.xml">
5 ]>
7 <project basedir="." default="build" name="Asunder" xmlns:ivy="antlib:org.apache.ivy.ant">
9   &common;
11   <path id="Asunder.classpath">
12     <pathelement location="bin"/>
13     <fileset dir="${lib.dir}">
14       <include name="**/*.jar"/>
15     </fileset>
16   </path>
18   <target name="init" depends="resolve">
19     <mkdir dir="bin"/>
20     <copy includeemptydirs="false" todir="bin">
21       <fileset dir="src" excludes="**/*.java"/>
22     </copy>
23   </target>
25   <target name="clean">
26     <delete dir="bin"/>
27   </target>
29   <target name="build-subprojects"/>
31   <target depends="init" name="build-project">
32     <echo message="${ant.project.name}: ${ant.file}"/>
33     <javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
34       <src path="src"/>
35       <classpath refid="Asunder.classpath"/>
36     </javac>
37   </target>
39 </project>