From: Tim R. <ti...@us...> - 2004-09-11 14:27:35
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19432 Modified Files: NAnt.build Log Message: Cg Demo is now build by nant Index: NAnt.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/NAnt.build,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NAnt.build 11 Sep 2004 13:12:16 -0000 1.5 --- NAnt.build 11 Sep 2004 14:27:25 -0000 1.6 *************** *** 7,10 **** --- 7,11 ---- <property name="gtkdir" value="/usr/lib/mono/gtk-sharp" /> <property name="gen" value="${nant.project.basedir}/generator/generator.exe" /> + <property name="cg" value="true" /> <target name="clean" description="remove all generated files"> <nant buildfile="platform/platform.build" target="clean" /> *************** *** 20,24 **** <nant buildfile="generator/generator.build" target="build" /> <nant buildfile="GL/GL.build" target="build" /> ! <nant buildfile="Cg/Cg.build" target="build" /> <nant buildfile="math/math.build" target="build" /> <nant buildfile="tools/tools.build" target="build" /> --- 21,25 ---- <nant buildfile="generator/generator.build" target="build" /> <nant buildfile="GL/GL.build" target="build" /> ! <nant buildfile="Cg/Cg.build" target="build" if="${cg}"/> <nant buildfile="math/math.build" target="build" /> <nant buildfile="tools/tools.build" target="build" /> *************** *** 27,30 **** --- 28,32 ---- <target name="samples" description="compiles examples"> <nant buildfile="samples/samples.build" target="build" /> + <nant buildfile="Cg/Cg.build" target="samples" if="${cg}"/> </target> </project> \ No newline at end of file |