lawless-legends/Platform/Apple/virtual/build.xml

29 lines
969 B
XML
Raw Normal View History

<?xml version="1.0"?>
2013-08-12 14:12:17 +00:00
<project name="game" default="build">
<property name="src.dir" location="./src"/>
<property name="build.dir" value="./build"/>
<property name="pack.dir" value="../tools/PackPartitions/dist"/>
<target name="all">
<antcall target="clean"/>
<antcall target="build"/>
</target>
<target name="clean">
<delete failonerror="false" dir="${build.dir}"/>
<ant dir="${src.dir}/core" target="clean" useNativeBasedir="true" inheritAll="false"/>
2014-06-25 13:37:10 +00:00
<ant dir="${src.dir}/plasma" target="clean" useNativeBasedir="true" inheritAll="false"/>
<ant dir="${src.dir}/raycast" target="clean" useNativeBasedir="true" inheritAll="false"/>
<ant dir="${src.dir}/font" target="clean" useNativeBasedir="true" inheritAll="false"/>
</target>
<target name="build">
<java jar="${pack.dir}/PackPartitions.jar" fork="true" failonerror="true">
<arg value="data/world/world.xml"/>
</java>
</target>
</project>