-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
45 lines (45 loc) · 1.33 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
<project name="ptsp" default="compile" basedir=".">
<description>The Physical Travelling Salesman Problem Competition</description>
<property name="src" location="src"/>
<property name="out" location="out"/>
<target name="init">
<tstamp/>
<mkdir dir="${out}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${out}" includeantruntime="false">
<classpath>
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
</classpath>
</javac>
</target>
<target name="run" depends="compile">
<java fork="true" classname="framework.ExecSync">
<classpath>
<path location="${out}"/>
<path location="lib/jdom.jar"/>
</classpath>
</java>
</target>
<target name="runReplay" depends="compile">
<java fork="true" classname="framework.ExecReplay">
<classpath>
<path location="${out}"/>
<path location="lib/jdom.jar"/>
</classpath>
</java>
</target>
<target name="runFromData" depends="compile">
<java fork="true" classname="framework.ExecFromData">
<classpath>
<path location="${out}"/>
<path location="lib/jdom.jar"/>
</classpath>
</java>
</target>
<target name="clean">
<delete dir="${out}"/>
</target>
</project>