blob: 8dabd9253cbb9f89ce547835e12b708991dd16dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0"?>
<!-- Ant build file for complete VisAI project -->
<project name="VisAI" default="build" basedir=".">
<description>
Java applets and applications for visualizing AI algorithms
</description>
<target name="build">
<ant antfile="jsearchdemo.xml" target="build"/>
</target>
<target name="docs">
<ant antfile="jsearchdemo.xml" target="docs"/>
</target>
<target name="dist">
<ant antfile="jsearchdemo.xml" target="dist"/>
</target>
<target name="clean">
<ant antfile="jsearchdemo.xml" target="clean"/>
</target>
</project>
|