Update of /cvsroot/csdopenglnet/csdOpenGL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17181
Added Files:
NAnt.build
Log Message:
nant build system grows up
--- NEW FILE: NAnt.build ---
<?xml version="1.0"?>
<project name="Math Library" default="build" basedir=".">
<description>Basic Math Library</description>
<property name="build.dir" value="${nant.project.basedir}/build/" />
<property name="debug" value="false"/>
<target name="clean" description="remove all generated files">
<nant buildfile="math/math.build" target="clean" />
<nant buildfile="tools/tools.build" target="clean" />
<delete dir="${build.dir}" failonerror="false" />
</target>
<target name="build" description="compiles the source code">
<mkdir dir="${build.dir}" />
<nant buildfile="math/math.build" target="build" />
<nant buildfile="tools/tools.build" target="build" />
</target>
</project>
|