aboutsummaryrefslogtreecommitdiff
path: root/build-mac-ios.xml
blob: fc8bdf3bbc21bddd233d6b68cd2bda539c96d8ca (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<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-macosx64.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">
        <ant antfile="fetch.xml" dir=".">
			<target name="fetch-robovm"/>
		</ant>
        <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-macosx64.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="box2d" depends="core">
		<ant antfile="build-macosx32.xml" dir="extensions/gdx-box2d/gdx-box2d/jni">
			<target name="clean"/>
			<target name="postcompile"/>
		</ant>
        <ant antfile="build-macosx64.xml" dir="extensions/gdx-box2d/gdx-box2d/jni">
			<target name="clean"/>
			<target name="postcompile"/>
		</ant>
		<ant antfile="build-ios32.xml" dir="extensions/gdx-box2d/gdx-box2d/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-macosx64.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>
        <ant antfile="build-macosx64.xml" dir="extensions/gdx-controllers/gdx-controllers-desktop/jni">
			<target name="clean"/>
			<target name="postcompile"/>
		</ant>
	</target>
	
	<target name="all" depends="core,backend-robovm,freetype,box2d,bullet,controllers">	
	</target>
</project>