forked from finnstr/libgdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-mac-ios.xml
56 lines (48 loc) · 1.64 KB
/
build-mac-ios.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<project name="gdx-ios-build" default="all" basedir=".">
<target name="core">
<ant antfile="build-macosx32.xml" dir="gdx/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
<ant antfile="build-ios32.xml" dir="gdx/jni"/>
</target>
<target name="backend-robovm" depends="core">
<exec dir="backends/gdx-backend-robovm" executable="/bin/bash">
<arg value="build-objectal.sh"/>
</exec>
</target>
<target name="freetype" depends="core">
<ant antfile="build-macosx32.xml" dir="extensions/gdx-freetype/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
<ant antfile="build-ios32.xml" dir="extensions/gdx-freetype/jni"/>
</target>
<target name="bullet" depends="core">
<ant antfile="build-macosx32.xml" dir="extensions/gdx-bullet/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
<ant antfile="build-ios32.xml" dir="extensions/gdx-bullet/jni"/>
</target>
<target name="controllers" depends="core">
<ant antfile="build-macosx32.xml" dir="extensions/gdx-controllers/gdx-controllers-desktop/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
</target>
<target name="audio" depends="core">
<ant antfile="build-macosx32.xml" dir="extensions/gdx-audio/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
</target>
<target name="image" depends="core">
<ant antfile="build-macosx32.xml" dir="extensions/gdx-image/jni">
<target name="clean"/>
<target name="postcompile"/>
</ant>
</target>
<target name="all" depends="core,backend-robovm,freetype,bullet,audio,image,controllers">
</target>
</project>