OSDN Git Service

Revert change to short circuit WidgetGroup hit detection.
[mikumikustudio/libgdx-mikumikustudio.git] / build-mac-ios.xml
1 <project name="gdx-ios-build" default="all" basedir=".">
2     
3         <target name="core">
4                 <ant antfile="build-macosx32.xml" dir="gdx/jni">
5                         <target name="clean"/>
6                         <target name="postcompile"/>
7                 </ant>
8                 <ant antfile="build-ios32.xml" dir="gdx/jni"/>
9         </target>
10         
11     <target name="backend-robovm" depends="core">
12         <exec dir="backends/gdx-backend-robovm" executable="/bin/bash">
13             <arg value="build-objectal.sh"/>
14         </exec>
15         </target>
16         
17         <target name="freetype" depends="core">
18                 <ant antfile="build-macosx32.xml" dir="extensions/gdx-freetype/jni">
19                         <target name="clean"/>
20                         <target name="postcompile"/>
21                 </ant>
22                 <ant antfile="build-ios32.xml" dir="extensions/gdx-freetype/jni"/>
23         </target>
24         
25         <target name="bullet" depends="core">
26                 <ant antfile="build-macosx32.xml" dir="extensions/gdx-bullet/jni">
27                         <target name="clean"/>
28                         <target name="postcompile"/>
29                 </ant>
30                 <ant antfile="build-ios32.xml" dir="extensions/gdx-bullet/jni"/>
31         </target>
32         
33         <target name="controllers" depends="core">
34                 <ant antfile="build-macosx32.xml" dir="extensions/gdx-controllers/gdx-controllers-desktop/jni">
35                         <target name="clean"/>
36                         <target name="postcompile"/>
37                 </ant>
38         </target>
39         
40         <target name="audio" depends="core">
41                 <ant antfile="build-macosx32.xml" dir="extensions/gdx-audio/jni">
42                         <target name="clean"/>
43                         <target name="postcompile"/>
44                 </ant>
45         </target>
46         
47         <target name="image" depends="core">
48                 <ant antfile="build-macosx32.xml" dir="extensions/gdx-image/jni">
49                         <target name="clean"/>
50                         <target name="postcompile"/>
51                 </ant>
52         </target>
53         
54         <target name="all" depends="core,backend-robovm,freetype,bullet,audio,image,controllers">       
55         </target>
56 </project>