Update of /cvsroot/csdopenglnet/csdOpenGL/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17181/math
Modified Files:
math.build
Log Message:
nant build system grows up
Index: math.build
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/math.build,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** math.build 11 Sep 2004 11:17:29 -0000 1.1
--- math.build 11 Sep 2004 11:33:50 -0000 1.2
***************
*** 1,11 ****
<?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" />
--- 1,11 ----
<?xml version="1.0"?>
! <project name="Math Library" default="build">
<description>Basic Math Library</description>
! <property name="debug" value="false"/>
<target name="clean" description="remove all generated files">
! <delete file="${build.dir}/csDragons.Math.dll" failonerror="false" />
</target>
<target name="build" description="compiles the source code">
! <csc target="library" output="${build.dir}/csDragons.Math.dll" debug="${debug}">
<sources>
<include name="*.cs" />
|