CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/build.xml
Views: 1401
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project name="PPSSPP" 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
<!-- if sdk.dir was not set from one of the property file, then
32
get it from the ANDROID_HOME env var.
33
This must be done before we load project.properties since
34
the proguard config can use sdk.dir -->
35
<property environment="env" />
36
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
37
<isset property="env.ANDROID_HOME" />
38
</condition>
39
40
<!-- this property is needed to run the script via ANT. It requires the NDK
41
environment variable which is accessed by ant during the build process -->
42
<condition property="ndk.dir" value="${env.NDK}">
43
<isset property="env.NDK" />
44
</condition>
45
46
<!-- The project.properties file is created and updated by the 'android'
47
tool, as well as ADT.
48
49
This contains project specific properties such as project target, and library
50
dependencies. Lower level build properties are stored in ant.properties
51
(or in .classpath for Eclipse projects).
52
53
This file is an integral part of the build system for your
54
application and should be checked into Version Control Systems. -->
55
<loadproperties srcFile="project.properties" />
56
57
<!-- quick check on sdk.dir -->
58
<fail
59
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."
60
unless="sdk.dir"
61
/>
62
63
<!--
64
Import per project custom build rules if present at the root of the project.
65
This is the place to put custom intermediary targets such as:
66
-pre-build
67
-pre-compile
68
-post-compile (This is typically used for code obfuscation.
69
Compiled code location: ${out.classes.absolute.dir}
70
If this is not done in place, override ${out.dex.input.absolute.dir})
71
-post-package
72
-post-build
73
-pre-clean
74
-->
75
<import file="custom_rules.xml" optional="true" />
76
77
<!-- Import the actual build file.
78
79
To customize existing targets, there are two options:
80
- Customize only one target:
81
- copy/paste the target into this file, *before* the
82
<import> task.
83
- customize it to your needs.
84
- Customize the whole content of build.xml
85
- copy/paste the content of the rules files (minus the top node)
86
into this file, replacing the <import> task.
87
- customize to your needs.
88
89
***********************
90
****** IMPORTANT ******
91
***********************
92
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
93
in order to avoid having your file be overridden by tools such as "android update project"
94
-->
95
<!-- version-tag: 1 -->
96
<import file="${sdk.dir}/tools/ant/build.xml" />
97
98
</project>
99
100