root/trunk/build.xml

Revision 3126, 1.5 kB (checked in by EricAllen, 4 hours ago)

Altered order of declarations in build.xml files in an attempt to eliminate platform-dependent failure.

Line 
1 <!-- Delegating build script, used to build ProjectFortress.
2      Note that the basedir is set to the checked out project
3      The explicit pathname seems to be a necessary evil <sigh> -->
4 <project name="ProjectFortress"
5         default="compile"
6         basedir="ProjectFortress">
7
8   <!-- Scala jar files -->
9   <property name="scala-compiler.jar"
10             value="${basedir}/third_party/scala/scala-compiler-2.7.1.jar"/>
11   <property name="scala-library.jar"
12             value="${basedir}/third_party/scala/scala-library-2.7.1.jar"/>
13
14   <!--
15        Paths
16   -->
17   <path id="scala.classpath">
18     <pathelement location="${scala-compiler.jar}"/>
19     <pathelement location="${scala-library.jar}"/>
20   </path>
21
22
23   <!--
24        Taskdefs
25   -->
26   <taskdef resource="scala/tools/ant/antlib.xml">
27     <classpath refid="scala.classpath"/>
28   </taskdef>
29
30   <target name="compile">
31     <ant target="compile"/>
32     <ant dir="../scala" target="compile"/>
33   </target>
34   <target name="blas">
35     <ant target="blas"/>
36   </target>
37   <target name="test">
38     <ant target="test"/>
39   </target>
40   <target name="clean">
41     <ant target="clean"/>
42     <ant dir="../scala" target="clean"/>
43   </target>
44   <target name="cleanCache">
45     <ant target="cleanCache"/>
46   </target>
47   <target name="testSystem">
48     <ant target="testSystem"/>
49   </target>
50   <target name="testOnly">
51     <ant target="testOnly" />
52   </target>
53   <target name="testsyntax">
54     <ant target="testsyntax" />
55   </target>
56   <target name="systemProperties">
57     <ant target="systemProperties" />
58   </target>
59 </project>
Note: See TracBrowser for help on using the browser.