mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-04 06:10:19 +00:00
29 lines
969 B
XML
29 lines
969 B
XML
<?xml version="1.0"?>
|
|
|
|
<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"/>
|
|
<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>
|