-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
35 lines (29 loc) · 928 Bytes
/
build.xml
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
26
27
28
29
30
31
32
33
34
<project name="TSP Genetics" default="build" basedir=".">
<property name="src" value="src"/>
<property name="build" value="build"/>
<property name="lib" value="lib"/>
<property name="doc" value="doc"/>
<path id="lib.path">
<pathelement location="${build}" />
<pathelement location="${lib}/jfreechart-1.0.19.jar" />
<pathelement location="${lib}/jcommon-1.0.23.jar" />
</path>
<target name="init">
<mkdir dir="${build}"/>
</target>
<target name="build" depends="init">
<javac srcdir="${src}" destdir="${build}" debug="true" includeantruntime="false">
<classpath refid="lib.path"/>
</javac>
</target>
<target name="run" depends="build">
<java classname="tsp.main.Main" fork="true" dir="." maxmemory="4096m">
<arg file="data/gr48.tsp"/>
<classpath refid="lib.path"/>
<classpath location="."/>
</java>
</target>
<target name="clean">
<delete dir="${build}"/>
</target>
</project>