mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Initial import
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@2 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
parent
8081e7006f
commit
8e18676b92
31 changed files with 4062 additions and 0 deletions
32
build/build.xml
Normal file
32
build/build.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<project name="turtle" default="all">
|
||||
|
||||
<property environment="env"/>
|
||||
<import file="${env.PONEY_HOME}/poney.xml"/>
|
||||
|
||||
<target name="turtle_test" description="build and run unit tests">
|
||||
<build-test name="turtle" mode="all">
|
||||
<compilerarg value="-Wno-uninitialized" location="mid" if="is-cygwin"/>
|
||||
</build-test>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean intermediate build artifacts">
|
||||
<delete dir="${out.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="configure" description="update external libraries">
|
||||
<update name="boost"/>
|
||||
</target>
|
||||
|
||||
<target name="test" depends="turtle_test" description="run unit tests"/>
|
||||
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue