forked from MIT-Mobile/MIT-Mobile-for-Android
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerate_build_settings.xml
38 lines (28 loc) · 948 Bytes
/
generate_build_settings.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="MITSplashActivity" default="all" >
<!-- <sequential> -->
<echo>starting build script</echo>
<property name="project.dtd" location="project.dtd"/>
<echo>dir = ${user.dir}</echo>
<condition property="isWindows">
<os family="windows"/>
</condition>
<condition property="isUnixLike">
<or>
<os family="unix"/>
<os family="mac"/>
</or>
</condition>
<target name="doWindows" if="isWindows">
<echo message="running windows build" />
<exec executable="cmd.exe">
<arg line="/c python build-deployment/build_source.py" />
</exec>
</target>
<target name="doUnix" if="isUnixLike">
<echo message="running mac/unix build" />
<exec executable="build-deployment/build_source.py" />
</target>
<target name="all" depends="doWindows,doUnix"/>
<!-- </sequential> -->
</project>