73 lines
2.3 KiB
XML
73 lines
2.3 KiB
XML
<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>
|