Update of /cvsroot/csdopenglnet/csdOpenGL/Cg
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29388
Modified Files:
Makefile
Added Files:
AssemblyInfo.cs PublicKeyFile.snk csdCg.cs
Log Message:
first Cg wrapping
--- NEW FILE: csdCg.cs ---
using System;
using System.Diagnostics;
namespace csDragons {
namespace OpenGL {
/** \brief Main class for csdGL
*
* This class combines all OpenGL functionality.
*/
public class Cg : csdCgBase {
}
}
}
--- NEW FILE: AssemblyInfo.cs ---
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following
// attributes.
//
// change them to the information which is associated with the assembly
// you compile.
[assembly: AssemblyTitle("csDragons.Cg")]
[assembly: AssemblyDescription("Wrapper-Library for Cg")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("csDragons")]
[assembly: AssemblyProduct("csDragons OpenGL.NET")]
[assembly: AssemblyCopyright("(C)Copyright 2004 by Tim Rädisch & Kai Reichert")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has following format :
//
// Major.Minor.Build.Revision
//
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):
[assembly: AssemblyVersion("0.1.*")]
// The following attributes specify the key for the sign of your assembly. See the
// .NET Framework documentation for more information about signing.
// This is not required, if you don't want signing let these attributes like they're.
[assembly: AssemblyDelaySign(true)]
[assembly: AssemblyKeyFile("PublicKeyFile.snk")]
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile 5 Aug 2004 13:09:14 -0000 1.1
--- Makefile 5 Aug 2004 16:02:32 -0000 1.2
***************
*** 1,3 ****
! FILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs Exceptions.cs
GEN=mono ../generator/csdGenerator.exe
--- 1,3 ----
! FILES=csdCgBase.cs AssemblyInfo.cs
GEN=mono ../generator/csdGenerator.exe
***************
*** 11,23 ****
GAC=gacutil $(GACUTIL_FLAGS)
! all: csdCgBase.cs
cg_8h.xml:
ln -sf ../doxygen/cg_xml/cg_8h.xml .
! csdCgBase.cs: cg_8h.xml
! $(GEN) cg_8h.xml libcsdGL.so csdCgBase System.Object csdCgBase.cs
!
install: install-gac
--- 11,24 ----
GAC=gacutil $(GACUTIL_FLAGS)
! all: csdCg.dll
+ csdCg.dll: $(FILES)
+ $(MCS) -target:library $^ -out:$@
cg_8h.xml:
ln -sf ../doxygen/cg_xml/cg_8h.xml .
! csdCgBase.cs: cg_8h.xml cg.xml
! $(GEN) cg.xml
install: install-gac
--- NEW FILE: PublicKeyFile.snk ---
(This appears to be a binary file; contents omitted.)
|