Update of /cvsroot/csdopenglnet/csdOpenGL/platform/mono
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv423/platform/mono
Modified Files:
mono.build
Log Message:
now all should be build by nant
Index: mono.build
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/mono/mono.build,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mono.build 11 Sep 2004 12:35:01 -0000 1.1
--- mono.build 11 Sep 2004 12:47:45 -0000 1.2
***************
*** 1,8 ****
<?xml version="1.0"?>
! <project name="Math Library" default="build" basedir=".">
<description>Basic Math Library</description>
<target name="clean" description="remove all generated files">
</target>
<target name="build" description="compiles the source code">
</target>
</project>
\ No newline at end of file
--- 1,28 ----
<?xml version="1.0"?>
! <project name="OpenGL Tools Library" default="build">
<description>Basic Math Library</description>
<target name="clean" description="remove all generated files">
+ <delete file="${build.dir}/csDragons.OpenGL.Platform.dll" failonerror="false" />
</target>
<target name="build" description="compiles the source code">
+ <csc target="library" output="${build.dir}/csDragons.OpenGL.Platform.dll" debug="${debug}">
+ <sources>
+ <include name="GLXTokens.cs" />
+ <include name="../*.cs" />
+ <include name="gtkArea.cs" if="${gtk}" />
+ <include name="gtkContext.cs" if="${gtk}" />
+ </sources>
+ <references>
+ <lib>
+ <include name="${gtkdir}" if="${gtk}" />
+ <include name="${build.dir}" />
+ </lib>
+ <include name="csDragons.OpenGL.dll" />
+ <include name="System.Drawing.dll" />
+ <include name="glib-sharp.dll" if="${gtk}" />
+ <include name="gdk-sharp.dll" if="${gtk}" />
+ <include name="gtk-sharp.dll" if="${gtk}" />
+ </references>
+ </csc>
</target>
</project>
\ No newline at end of file
|