source: trunk/abcl/examples/gui/build.xml

Last change on this file was 12732, checked in by Mark Evenson, 14 years ago

Make GUI examples buildable; putative attempt at a README.

  • Property svn:eol-style set to native
File size: 434 bytes
Line 
1<project default="compile">
2
3  <path id="classpath">
4    <pathelement location="../../dist/abcl.jar"/>
5  </path>
6
7  <target name="compile" depends="abcl.jar">
8    <javac 
9        srcdir="."
10        classpathref="classpath"
11        includeantruntime="false"/>
12  </target>
13
14  <target name="abcl.jar">
15    <ant dir="../.." target="abcl.jar">
16      <property name="abcl.build.incremental" value="true"/>
17    </ant>
18  </target>
19
20</project>
Note: See TracBrowser for help on using the repository browser.