From: Tim R. <ti...@us...> - 2004-09-11 12:07:28
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24527 Modified Files: NAnt.build Log Message: bring GL to Nant Index: NAnt.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/NAnt.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NAnt.build 11 Sep 2004 11:33:50 -0000 1.1 --- NAnt.build 11 Sep 2004 12:07:02 -0000 1.2 *************** *** 3,14 **** <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" /> --- 3,20 ---- <description>Basic Math Library</description> <property name="build.dir" value="${nant.project.basedir}/build/" /> ! <property name="debug" value="false" /> ! <property name="gtk" value="true" /> ! <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> <target name="clean" description="remove all generated files"> <nant buildfile="tools/tools.build" target="clean" /> + <nant buildfile="math/math.build" target="clean" /> + <nant buildfile="GL/GL.build" target="clean" /> + <nant buildfile="generator/generator.build" target="clean" /> <delete dir="${build.dir}" failonerror="false" /> </target> <target name="build" description="compiles the source code"> <mkdir dir="${build.dir}" /> + <nant buildfile="generator/generator.build" target="build" /> + <nant buildfile="GL/GL.build" target="build" /> <nant buildfile="math/math.build" target="build" /> <nant buildfile="tools/tools.build" target="build" /> |