1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<?xml version="1.0" encoding="UTF-8"?>
<project default="build_eclipse" basedir=".">
<condition property="build-natives">
<matches pattern="^${ws}.${os}.${arch}$" string="${native}"/>
</condition>
<target name="build_eclipse" if="build-natives">
<exec dir="." executable="${basedir}\build.bat">
<arg line="install"/>
</exec>
</target>
<target name="clean" if="build-natives">
<tstamp/>
<exec dir="." executable="${basedir}\build.bat">
<arg line="clean"/>
</exec>
</target>
</project>
|