turtle/build/build.xml
mat007 7f7c696505 Clean-up
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@95 860be788-9bd5-4423-9f1e-828f051e677b
2010-01-21 16:06:01 +00:00

31 lines
944 B
XML

<project name="turtle" default="all">
<property environment="env"/>
<import file="${env.PONEY_HOME}/poney.xml"/>
<target name="clean" description="clean intermediate build artifacts">
<delete dir="${out.dir}"/>
</target>
<target name="configure" description="update external libraries">
<update name="boost"/>
<update name="mockpp"/> <!-- boost.test.xml needs it -->
</target>
<target name="test" description="run unit tests">
<build-test name="turtle" mode="all">
<compilerarg value="-Wno-uninitialized" location="mid" if="is-cygwin"/>
</build-test>
</target>
<target name="export" description="export the distribution">
<deploy>
<module name="turtle">
<include name="**/*.hpp"/>
</module>
</deploy>
</target>
<target name="all" depends="configure,test,export" description="build, run tests and package application"/>
</project>