blob: f9af591180bea6700de249086c0c9181cb827872 [file] [log] [blame]
<?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>