blob: cbf44ceac666b78c003295c7b98b6365ad991955 (
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
36
37
38
39
40
41
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
If the workspace directory name contains a space and leads to errors in DEX,
then you need to set the property "basedir" in your local.properties to the 8.3 name
of the directory where this script is located on your disk.
-->
<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>
|