Update of /cvsroot/csdopenglnet/csdOpenGL/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14132
Added Files:
math.build
Log Message:
NAnt build file
--- NEW FILE: math.build ---
<?xml version="1.0"?>
<project name="Math Library" default="build" basedir=".">
<description>Basic Math Library</description>
<property name="debug" value="true"/>
<target name="clean" description="remove all generated files">
<delete file="csDragons.Math.dll" failonerror="false" />
</target>
<target name="build" description="compiles the source code">
<csc target="library" output="csDragons.Math.dll" debug="${debug}">
<sources>
<include name="*.cs" />
</sources>
</csc>
</target>
</project>
|