Added headers integrity check

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@292 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-04-12 20:30:50 +00:00
parent 43188dcefb
commit 3aa4ad9d12

View file

@ -12,7 +12,6 @@
</target>
<target name="test" description="run unit tests">
<build-lib name="turtle" depends="boost" mode="release"/>
<build-test name="turtle" depends="boost" mode="all">
<compilerarg value="-Wno-uninitialized" location="mid" if="is-cygwin"/>
</build-test>
@ -46,6 +45,10 @@
</trycatch>
</target>
<target name="reports" description="generate code analysis reports">
<headers name="turtle"/>
</target>
<target name="bench" description="build compilation benchmark">
<build-app name="turtle_bench" mode="all">
<includepath path="${applications.dir}/turtle_bench"/>
@ -73,6 +76,6 @@
</tar>
</target>
<target name="all" depends="configure,test,export,package" description="configure, build and run tests, export and package distribution"/>
<target name="all" depends="configure,test,reports,export,package" description="configure, build and run tests, export and package distribution"/>
</project>