From: Tim R. <ti...@us...> - 2004-09-11 08:26:47
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16636/windows Added Files: AssemblyInfo.cs Makefile PublicKeyFile.snk Log Message: added windows dummy library --- 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.OpenGL")] [assembly: AssemblyDescription("Wrapper-Library for OpenGL")] [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")] --- NEW FILE: Makefile --- FILES_SRC=../Exceptions.cs FILES=$(FILES_SRC) DEBUG=/d:DEBUG DEBUG= OPTS_SRC=-lib:../../GL -r:csDragons.OpenGL OPTS=$(OPTS_SRC) $(OPTS_GTK) DLL=csDragons.OpenGL.Windows.dll GEN=mono ../../generator/csdGenerator.exe CC=mcs MCS=$(CC) $(OPTS) PACKAGE=csDragons GAC=gacutil $(GACUTIL_FLAGS) all: $(DLL) $(DLL): AssemblyInfo.cs $(FILES) $(MCS) -target:library $^ -out:$@ install: install-gac install-gac: $(DLL) $(GAC) /i $(DLL) /f /package $(PACKAGE) uninstall: uninstall-gac uninstall-gac: $(GAC) /u $(DLL) clean: rm -f *.exe rm -f *.dll .IGNORE: clean .EXPORT_ALL_VARIABLES: .PHONY: clean --- NEW FILE: PublicKeyFile.snk --- (This appears to be a binary file; contents omitted.) |