2013-08-12 06:34:37 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2013-08-12 07:12:17 -07:00
|
|
|
<project name="game" default="build">
|
2013-08-12 06:34:37 -07:00
|
|
|
|
|
|
|
<property name="src.dir" location="./src"/>
|
|
|
|
<property name="build.dir" value="./build"/>
|
2014-02-09 14:59:43 -08:00
|
|
|
<property name="pack.dir" value="../tools/PackPartitions/dist"/>
|
2013-08-12 06:34:37 -07:00
|
|
|
|
|
|
|
<target name="all">
|
|
|
|
<antcall target="clean"/>
|
|
|
|
<antcall target="build"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete failonerror="false" dir="${build.dir}"/>
|
2014-01-02 15:27:31 -08:00
|
|
|
<ant dir="${src.dir}/core" target="clean" useNativeBasedir="true" inheritAll="false"/>
|
2014-06-25 06:37:10 -07: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"/>
|
2013-08-12 06:34:37 -07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build">
|
2014-02-09 14:59:43 -08:00
|
|
|
<java jar="${pack.dir}/PackPartitions.jar" fork="true" failonerror="true">
|
2014-02-20 07:55:07 -08:00
|
|
|
<arg value="data/world/world.xml"/>
|
2014-02-09 14:59:43 -08:00
|
|
|
</java>
|
2013-08-12 06:34:37 -07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|