-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
36 lines (29 loc) · 978 Bytes
/
build.xml
File metadata and controls
36 lines (29 loc) · 978 Bytes
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
<project name="depunit" basedir="." default="compile">
<path id="cpmake-path">
<pathelement location="tools/cpmake2.jar"/>
<pathelement location="tools/bsh-2.0b4.jar"/>
</path>
<target name="clean" description="Cleans build area">
<java classname="cpmake.CPMake" fork="true" classpathref="cpmake-path"
failonerror="true">
<arg value="clean"/>
</java>
</target>
<target name="compile" description="Compiles project">
<java classname="cpmake.CPMake" fork="true" classpathref="cpmake-path"
failonerror="true">
</java>
</target>
<target name="test" description="Runs unit tests">
<java classname="cpmake.CPMake" fork="true" classpathref="cpmake-path"
failonerror="true">
<arg value="test"/>
</java>
<java classname="cpmake.CPMake" fork="true" dir="test/test_project"
classpathref="cpmake-path" failonerror="true">
<arg value="clean"/>
<arg value="generate"/>
<arg value="compile"/>
</java>
</target>
</project>