blob: 707c4457bd3813b17cf2fd93142ccac2d030c8ae (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<project name="cgeo">
<property file="local.properties" />
<property name="cgeo.buildxml" value="./build_cgeo.xml"/>
<target name="help" description="Display available targets">
<ant antfile="${cgeo.buildxml}" target="help"/>
</target>
<target name="clean" description="Remove output files">
<ant antfile="${cgeo.buildxml}" target="clean"/>
</target>
<target name="compile" description="Compile project">
<ant antfile="${cgeo.buildxml}" target="compile"/>
</target>
<target name="debug" description="Build application">
<ant antfile="${cgeo.buildxml}" target="debug"/>
</target>
<target name="release" description="Build application">
<ant antfile="${cgeo.buildxml}" target="release"/>
</target>
<target name="install" description="Install application">
<ant antfile="${cgeo.buildxml}" target="install"/>
</target>
<target name="uninstall" description="Uninstall application">
<ant antfile="${cgeo.buildxml}" target="uninstall"/>
</target>
</project>
|