-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildDependencies.xml
59 lines (50 loc) · 1.88 KB
/
buildDependencies.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project>
<project name="VaryLab Dependencies Update" default="default">
<description>
This is the VaryLab dependency update ant build file.
</description>
<tstamp>
<format property="date" pattern="yyyy-MM-dd" />
</tstamp>
<target name="default">
<echo>Please choose a dependency target to update.</echo>
</target>
<target name="all" depends="halfedgetools, jrworkspace, jreality">
<echo>Update all supported dependencies</echo>
</target>
<target name="halfedgetools">
<ant antfile="build.xml" dir="../halfedgetools" target="clean"/>
<ant antfile="build.xml" dir="../halfedgetools" target="release"/>
<copy todir="lib/jtem">
<fileset dir="../halfedgetools/release" includes="halfedgetools.jar"/>
</copy>
</target>
<target name="halfedge">
<ant antfile="build.xml" dir="../halfedge" target="clean"/>
<ant antfile="build.xml" dir="../halfedge" target="release"/>
<copy todir="lib/jtem">
<fileset dir="../halfedge/release" includes="halfedge.jar"/>
</copy>
</target>
<target name="jrworkspace">
<ant antfile="build.xml" dir="../jrworkspace" target="clean"/>
<ant antfile="build.xml" dir="../jrworkspace" target="jrworkspace"/>
<copy todir="lib/jtem">
<fileset dir="../jrworkspace/jar" includes="jrworkspace.jar"/>
</copy>
</target>
<target name="jreality">
<ant antfile="build.xml" dir="../jreality" target="clean"/>
<ant antfile="build.xml" dir="../jreality" target="release-jar"/>
<copy todir="lib/jreality">
<fileset dir="../jreality/release" includes="jReality.jar"/>
</copy>
</target>
<target name="java2d">
<ant antfile="build.xml" dir="../java2d" target="release"/>
<copy todir="lib/jtem" overwrite="true">
<fileset dir="../java2d/release" includes="java2d.jar"/>
</copy>
</target>
</project>