lawless-legends/Platform/Apple/build.xml
2016-05-31 07:45:49 -07:00

15 lines
385 B
XML

<?xml version="1.0"?>
<project name="tools" default="build">
<target name="clean">
<echo>Cleaning tools.</echo>
<ant dir="./tools/" target="clean" useNativeBasedir="true" inheritAll="false"/>
</target>
<target name="build">
<echo>Building tools.</echo>
<ant dir="./tools/" target="build" useNativeBasedir="true" inheritAll="false"/>
</target>
</project>