blob: b977ef7d819ede702a33b53f203a1ebbdc6f5f5c [file] [log] [blame]
Chris Craika3ac0a22014-01-06 12:43:42 -08001<?xml version="1.0" encoding="UTF-8"?>
2<project name="rastermill" default="help">
3
4 <!-- The local.properties file is created and updated by the 'android' tool.
5 It contains the path to the SDK. It should *NOT* be checked into
6 Version Control Systems. -->
7 <property file="local.properties" />
8
9 <!-- The ant.properties file can be created by you. It is only edited by the
10 'android' tool to add properties to it.
11 This is the place to change some Ant specific build properties.
12 Here are some properties you may want to change/update:
13
14 source.dir
15 The name of the source directory. Default is 'src'.
16 out.dir
17 The name of the output directory. Default is 'bin'.
18
19 For other overridable properties, look at the beginning of the rules
20 files in the SDK, at tools/ant/build.xml
21
22 Properties related to the SDK location or the project target should
23 be updated using the 'android' tool with the 'update' action.
24
25 This file is an integral part of the build system for your
26 application and should be checked into Version Control Systems.
27
28 -->
29 <property file="ant.properties" />
30
31 <property name="export.dir" value="exported_libs" />
32
33 <!-- if sdk.dir was not set from one of the property file, then
34 get it from the ANDROID_HOME env var.
35 This must be done before we load project.properties since
36 the proguard config can use sdk.dir -->
37 <property environment="env" />
38 <condition property="sdk.dir" value="${env.ANDROID_HOME}">
39 <isset property="env.ANDROID_HOME" />
40 </condition>
41
42 <!-- The project.properties file is created and updated by the 'android'
43 tool, as well as ADT.
44
45 This contains project specific properties such as project target, and library
46 dependencies. Lower level build properties are stored in ant.properties
47 (or in .classpath for Eclipse projects).
48
49 This file is an integral part of the build system for your
50 application and should be checked into Version Control Systems. -->
51 <loadproperties srcFile="project.properties" />
52
53 <!-- quick check on sdk.dir -->
54 <fail
55 message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
56 unless="sdk.dir"
57 />
58
59 <target name="-pre-build">
60 <exec executable="ndk-build" failonerror="true"/>
61 </target>
62
63 <target name="clean" depends="android_rules.clean">
64 <exec executable="ndk-build" failonerror="true">
65 <arg value="clean"/>
66 </exec>
67 <delete dir="${export.dir}" />
68 </target>
69
70 <!--
71 Import per project custom build rules if present at the root of the project.
72 This is the place to put custom intermediary targets such as:
73 -pre-build
74 -pre-compile
75 -post-compile (This is typically used for code obfuscation.
76 Compiled code location: ${out.classes.absolute.dir}
77 If this is not done in place, override ${out.dex.input.absolute.dir})
78 -post-package
79 -post-build
80 -pre-clean
81 -->
82 <import file="custom_rules.xml" optional="true" />
83
84 <!-- Import the actual build file.
85
86 To customize existing targets, there are two options:
87 - Customize only one target:
88 - copy/paste the target into this file, *before* the
89 <import> task.
90 - customize it to your needs.
91 - Customize the whole content of build.xml
92 - copy/paste the content of the rules files (minus the top node)
93 into this file, replacing the <import> task.
94 - customize to your needs.
95
96 ***********************
97 ****** IMPORTANT ******
98 ***********************
99 In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
100 in order to avoid having your file be overridden by tools such as "android update project"
101 -->
102 <!-- version-tag: 1 -->
103 <import file="${sdk.dir}/tools/ant/build.xml" />
104
105 <target name="-post-build">
106 <delete dir="${export.dir}" />
107 <copy file="${out.library.jar.file}" tofile="${export.dir}/rastermill.jar" />
108 <copy todir="${export.dir}">
109 <fileset dir="${native.libs.absolute.dir}">
110 <include name="**/librastermill-native.so" />
111 </fileset>
112 </copy>
113 </target>
114
115</project>