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