-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
60 lines (55 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<project name="NU17-FRamework buildfile" default="compile">
<!-- This is a hack to fix scope issues -->
<property name="custom-ant" value="default.xml"/>
<property name="install-ivy-ant" value="install-ivy.xml"/>
<property name="install-ant" value="install.xml"/>
<target name="install-ivy">
<ant antfile="${install-ivy-ant}" target="init-ivy"/>
</target>
<target name="init-checkstyle">
<ant antfile="${custom-ant}" target="init-checkstyle"/>
</target>
<target name="checkstyle">
<ant antfile="${custom-ant}" target="checkstyle"/>
</target>
<target name="compile">
<ant antfile="${custom-ant}" target="compile"/>
</target>
<target name="test">
<ant antfile="${custom-ant}" target="test"/>
</target>
<target name="jar">
<ant antfile="${custom-ant}" target="jar"/>
</target>
<target name="compileFRamework">
<ant antfile="${custom-ant}" target="compileFRamework"/>
</target>
<target name="clean">
<ant antfile="${custom-ant}" target="clean"/>
</target>
<target name="get-target-ip">
<ant antfile="${custom-ant}" target="get-target-ip"/>
</target>
<target name="deploy" depends="test">
<ant antfile="${custom-ant}" target="deploy"/>
</target>
<target name="debug-deploy" description="Deploy the jar and start the program running.">
<ant antfile="${custom-ant}" target="debug-deploy"/>
</target>
<target name="jar-for-simulation">
<ant antfile="${custom-ant}" target="jar-for-simulation"/>
</target>
<target name="simulate">
<ant antfile="${custom-ant}" target="simulate"/>
</target>
<target name="debug-simulate">
<ant antfile="${custom-ant}" target="debug-simulate"/>
</target>
<target name="install" depends="install-ivy">
<ant antfile="${install-ant}" target="install"/>
</target>
<target name="native-deploy">
<ant antfile="${custom-ant}" target="deploy-native-libs"/>
</target>
</project>