You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(79) |
Aug
(69) |
Sep
(120) |
Oct
(17) |
Nov
(7) |
Dec
|
---|
From: Tim R. <ti...@us...> - 2004-09-11 11:33:59
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17181/tools Modified Files: tools.build Log Message: nant build system grows up Index: tools.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/tools.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tools.build 11 Sep 2004 11:21:01 -0000 1.1 --- tools.build 11 Sep 2004 11:33:50 -0000 1.2 *************** *** 1,11 **** <?xml version="1.0"?> ! <project name="OpenGL Tools Library" default="build" basedir="."> <description>Basic Math Library</description> <property name="debug" value="false"/> <target name="clean" description="remove all generated files"> ! <delete file="csDragons.OpenGL.Tools.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> ! <csc target="library" output="csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> <include name="*.cs" /> --- 1,11 ---- <?xml version="1.0"?> ! <project name="OpenGL Tools Library" default="build"> <description>Basic Math Library</description> <property name="debug" value="false"/> <target name="clean" description="remove all generated files"> ! <delete file="${build.dir}/csDragons.OpenGL.Tools.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> ! <csc target="library" output="${build.dir}/csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> <include name="*.cs" /> |
From: Tim R. <ti...@us...> - 2004-09-11 11:33:59
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17181/math Modified Files: math.build Log Message: nant build system grows up Index: math.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/math.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** math.build 11 Sep 2004 11:17:29 -0000 1.1 --- math.build 11 Sep 2004 11:33:50 -0000 1.2 *************** *** 1,11 **** <?xml version="1.0"?> ! <project name="Math Library" default="build" basedir="."> <description>Basic Math Library</description> ! <property name="debug" value="true"/> <target name="clean" description="remove all generated files"> ! <delete file="csDragons.Math.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> ! <csc target="library" output="csDragons.Math.dll" debug="${debug}"> <sources> <include name="*.cs" /> --- 1,11 ---- <?xml version="1.0"?> ! <project name="Math Library" default="build"> <description>Basic Math Library</description> ! <property name="debug" value="false"/> <target name="clean" description="remove all generated files"> ! <delete file="${build.dir}/csDragons.Math.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> ! <csc target="library" output="${build.dir}/csDragons.Math.dll" debug="${debug}"> <sources> <include name="*.cs" /> |
From: Tim R. <ti...@us...> - 2004-09-11 11:33:58
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17181 Added Files: NAnt.build Log Message: nant build system grows up --- NEW FILE: NAnt.build --- <?xml version="1.0"?> <project name="Math Library" default="build" basedir="."> <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" /> </target> </project> |
From: Tim R. <ti...@us...> - 2004-09-11 11:21:11
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14833 Added Files: tools.build Removed Files: gtkAdvanced.cs gtkArea.cs gtkContext.cs Log Message: create nant build file --- gtkAdvanced.cs DELETED --- --- gtkContext.cs DELETED --- --- gtkArea.cs DELETED --- --- NEW FILE: tools.build --- <?xml version="1.0"?> <project name="OpenGL Tools Library" default="build" basedir="."> <description>Basic Math Library</description> <property name="debug" value="false"/> <target name="clean" description="remove all generated files"> <delete file="csDragons.OpenGL.Tools.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> <csc target="library" output="csDragons.OpenGL.Tools.dll" debug="${debug}"> <sources> <include name="*.cs" /> </sources> <references> <include name="System.Drawing.dll" /> </references> </csc> </target> </project> |
From: Tim R. <ti...@us...> - 2004-09-11 11:17:40
|
Update of /cvsroot/csdopenglnet/csdOpenGL/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14132 Added Files: math.build Log Message: NAnt build file --- NEW FILE: math.build --- <?xml version="1.0"?> <project name="Math Library" default="build" basedir="."> <description>Basic Math Library</description> <property name="debug" value="true"/> <target name="clean" description="remove all generated files"> <delete file="csDragons.Math.dll" failonerror="false" /> </target> <target name="build" description="compiles the source code"> <csc target="library" output="csDragons.Math.dll" debug="${debug}"> <sources> <include name="*.cs" /> </sources> </csc> </target> </project> |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:52
|
Update of /cvsroot/csdopenglnet/tutorials/lesson05 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645/lesson05 Modified Files: Makefile lesson05.cs Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson05/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 15 Jul 2004 17:35:46 -0000 1.1 --- Makefile 11 Sep 2004 09:59:31 -0000 1.2 *************** *** 1,17 **** ! CC=mcs ! DEBUG=/d:DEBUG ! DEBUG= ! OPTS=$(DEBUG) ! LIBS=csdGL.dll ! MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! FILES = lesson05.exe all: $(FILES) %.exe:%.cs ! $(MCS) -r:csdGL.dll $^ -o $@ ! ! run: $(FILES) ! ./lesson05.exe clean: --- 1,10 ---- ! ifeq ($(GLUT),1) ! FILES = lesson05.exe ! endif all: $(FILES) %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ clean: Index: lesson05.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson05/lesson05.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lesson05.cs 15 Jul 2004 17:35:46 -0000 1.1 --- lesson05.cs 11 Sep 2004 09:59:31 -0000 1.2 *************** *** 2,6 **** using System; ! public class Lesson05 : csdGL { protected float rotTri = 0.0f; --- 2,6 ---- using System; ! public class Lesson05 : GL { protected float rotTri = 0.0f; |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:52
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645/lesson04 Modified Files: Makefile lesson04.cs Log Message: adaption to new structure Index: lesson04.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/lesson04.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lesson04.cs 13 Jul 2004 21:12:57 -0000 1.5 --- lesson04.cs 11 Sep 2004 09:59:31 -0000 1.6 *************** *** 2,6 **** using System; ! public class Lesson04 : csdGL { protected float rotTri = 0.0f; --- 2,6 ---- using System; ! public class Lesson04 : GL { protected float rotTri = 0.0f; Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 13 Jul 2004 22:24:19 -0000 1.2 --- Makefile 11 Sep 2004 09:59:31 -0000 1.3 *************** *** 1,17 **** ! CC=mcs ! DEBUG=/d:DEBUG ! DEBUG= ! OPTS=$(DEBUG) ! LIBS=csdGL.dll ! MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! FILES = lesson04.exe all: $(FILES) %.exe:%.cs ! $(MCS) -r:csdGL.dll $^ -o $@ ! ! run: $(FILES) ! ./lesson04.exe clean: --- 1,10 ---- ! ifeq ($(GLUT),1) ! FILES = lesson04.exe ! endif all: $(FILES) %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ clean: |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:52
|
Update of /cvsroot/csdopenglnet/tutorials/lesson03 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645/lesson03 Modified Files: Makefile lesson03.cs Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson03/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 13 Jul 2004 22:24:19 -0000 1.2 --- Makefile 11 Sep 2004 09:59:31 -0000 1.3 *************** *** 1,17 **** ! CC=mcs ! DEBUG=/d:DEBUG ! DEBUG= ! OPTS=$(DEBUG) ! LIBS=csdGL.dll ! MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! FILES = lesson03.exe all: $(FILES) %.exe:%.cs ! $(MCS) -r:csdGL.dll $^ -o $@ ! ! run: $(FILES) ! ./lesson03.exe clean: --- 1,10 ---- ! ifeq ($(GLUT),1) ! FILES = lesson03.exe ! endif all: $(FILES) %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ clean: Index: lesson03.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson03/lesson03.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lesson03.cs 13 Jul 2004 22:24:19 -0000 1.3 --- lesson03.cs 11 Sep 2004 09:59:31 -0000 1.4 *************** *** 2,6 **** using System; ! public class Lesson03 : csdGL { public Lesson03() { --- 2,6 ---- using System; ! public class Lesson03 : GL { public Lesson03() { |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:51
|
Update of /cvsroot/csdopenglnet/tutorials/lesson02 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645/lesson02 Modified Files: Makefile lesson02.cs Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson02/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 13 Jul 2004 22:24:19 -0000 1.2 --- Makefile 11 Sep 2004 09:59:30 -0000 1.3 *************** *** 1,17 **** ! CC=mcs ! DEBUG=/d:DEBUG ! DEBUG= ! OPTS=$(DEBUG) ! LIBS=csdGL.dll ! MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! FILES = lesson02.exe all: $(FILES) %.exe:%.cs ! $(MCS) -r:csdGL.dll $^ -o $@ ! ! run: $(FILES) ! ./lesson02.exe clean: --- 1,10 ---- ! ifeq ($(GLUT),1) ! FILES = lesson02.exe ! endif all: $(FILES) %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ clean: Index: lesson02.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson02/lesson02.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lesson02.cs 13 Jul 2004 22:24:19 -0000 1.5 --- lesson02.cs 11 Sep 2004 09:59:30 -0000 1.6 *************** *** 2,6 **** using System; ! public class Lesson02 : csdGL { public Lesson02() { --- 2,6 ---- using System; ! public class Lesson02 : GL { public Lesson02() { |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:40
|
Update of /cvsroot/csdopenglnet/tutorials/lesson01 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645/lesson01 Modified Files: Makefile Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson01/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 11 Sep 2004 09:46:07 -0000 1.4 --- Makefile 11 Sep 2004 09:59:30 -0000 1.5 *************** *** 1,10 **** - CC=mcs - DEBUG=/d:DEBUG - DEBUG= - OPTS=$(DEBUG) - LIBS=csdGL.dll - MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp LES=lesson01 - ifeq ($(GLUT),1) GLUTFILES=$(LES)glut.exe --- 1,3 ---- *************** *** 20,30 **** lesson01gtk.exe: lesson01gtk.cs ! $(MCS) -r:csDragons.OpenGL.dll -r:csDragons.OpenGL.Mono.dll -r:glib-sharp.dll -r:gtk-sharp.dll $^ -o $@ %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ - run: $(FILES) - ./lesson01glut.exe clean: --- 13,21 ---- lesson01gtk.exe: lesson01gtk.cs ! $(GTKMCS) -r:csDragons.OpenGL.dll -r:csDragons.OpenGL.Mono.dll -r:glib-sharp.dll -r:gtk-sharp.dll $^ -o $@ %.exe:%.cs ! $(GLUTMCS) -r:csDragons.OpenGL.dll $^ -o $@ clean: |
From: Tim R. <ti...@us...> - 2004-09-11 09:59:40
|
Update of /cvsroot/csdopenglnet/tutorials In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30645 Modified Files: Makefile Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile 11 Sep 2004 09:48:32 -0000 1.5 --- Makefile 11 Sep 2004 09:59:30 -0000 1.6 *************** *** 2,5 **** --- 2,12 ---- GTK=1 + BASEFLAGS=-r:csDragons.OpenGL.dll -lib:/usr/lib/mono/csDragons + GTKFLAGS=-r:csDragons.OpenGL.Mono.dll -lib:/usr/lub/mono/csDragons -r:gtk-sharp.dll -r:gtk-sharp.dll + + MCS=mcs $(OPTS) $(BASEFLAGS) + GLUTMCS=$(MCS) + GTKMCS=$(MCS) $(GTKFLAGS) + all: $(MAKE) -C lesson01 |
From: Tim R. <ti...@us...> - 2004-09-11 09:48:41
|
Update of /cvsroot/csdopenglnet/tutorials In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29176 Modified Files: INSTALL Makefile Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 15 Jul 2004 17:35:46 -0000 1.4 --- Makefile 11 Sep 2004 09:48:32 -0000 1.5 *************** *** 1,2 **** --- 1,5 ---- + GLUT=1 + GTK=1 + all: $(MAKE) -C lesson01 *************** *** 6,17 **** $(MAKE) -C lesson05 - run: - $(MAKE) -C lesson01 run - $(MAKE) -C lesson02 run - $(MAKE) -C lesson03 run - $(MAKE) -C lesson04 run - $(MAKE) -C lesson05 run - - clean: $(MAKE) -C lesson01 clean --- 9,12 ---- Index: INSTALL =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/INSTALL,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** INSTALL 13 Jul 2004 22:23:48 -0000 1.1 --- INSTALL 11 Sep 2004 09:48:32 -0000 1.2 *************** *** 9,12 **** * Install * *********** ! #> make ! #> make run this executes example after example; exit example with [Esc] \ No newline at end of file --- 9,16 ---- * Install * *********** ! #> make <<OPTS>> ! ! ! There are a few flags (0=off, 1=on) to control the compile process. ! GLUT [1]: builds GLUT demos if available ! GTK [1]: builds Gtk# demos if available |
From: Tim R. <ti...@us...> - 2004-09-11 09:46:17
|
Update of /cvsroot/csdopenglnet/tutorials/lesson01 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28797 Modified Files: Makefile lesson01glut.cs lesson01gtk.cs Log Message: adaption to new structure Index: lesson01glut.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson01/lesson01glut.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lesson01glut.cs 14 Jul 2004 17:02:49 -0000 1.6 --- lesson01glut.cs 11 Sep 2004 09:46:07 -0000 1.7 *************** *** 2,6 **** using System; ! public class Lesson01GLUT : csdGL { public Lesson01GLUT() { --- 2,6 ---- using System; ! public class Lesson01GLUT : GL { public Lesson01GLUT() { Index: lesson01gtk.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson01/lesson01gtk.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lesson01gtk.cs 18 Jul 2004 15:03:35 -0000 1.1 --- lesson01gtk.cs 11 Sep 2004 09:46:07 -0000 1.2 *************** *** 1,3 **** --- 1,4 ---- using csDragons.OpenGL; + using csDragons.OpenGL.Platform; using GLib; using Gtk; *************** *** 5,9 **** using System; ! public class GtkTest : csdGL { GtkGLArea glarea; --- 6,10 ---- using System; ! public class GtkTest : GL { GtkGLArea glarea; Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson01/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 18 Jul 2004 15:03:35 -0000 1.3 --- Makefile 11 Sep 2004 09:46:07 -0000 1.4 *************** *** 5,17 **** LIBS=csdGL.dll MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! FILES = lesson01glut.exe lesson01gtk.exe all: $(FILES) lesson01gtk.exe: lesson01gtk.cs ! $(MCS) -r:csdGL_Gtk -r:glib-sharp.dll -r:gtk-sharp.dll $^ -o $@ %.exe:%.cs ! $(MCS) -r:csdGL.dll $^ -o $@ run: $(FILES) --- 5,27 ---- LIBS=csdGL.dll MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp ! LES=lesson01 ! ! ifeq ($(GLUT),1) ! GLUTFILES=$(LES)glut.exe ! endif ! ifeq ($(GTK),1) ! GTKFILES=$(LES)gtk.exe ! endif ! ! FILES=$(GLUTFILES) $(GTKFILES) ! all: $(FILES) lesson01gtk.exe: lesson01gtk.cs ! $(MCS) -r:csDragons.OpenGL.dll -r:csDragons.OpenGL.Mono.dll -r:glib-sharp.dll -r:gtk-sharp.dll $^ -o $@ %.exe:%.cs ! $(MCS) -r:csDragons.OpenGL.dll $^ -o $@ run: $(FILES) *************** *** 19,23 **** clean: ! rm -f $(FILES) .IGNORE: --- 29,33 ---- clean: ! rm -f $(LES)glut.exe $(LES)gtk.exe .IGNORE: |
From: Tim R. <ti...@us...> - 2004-09-11 09:38:47
|
Update of /cvsroot/csdopenglnet/tutorials/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27712 Removed Files: Framework.cs Makefile lesson01.cs lesson02.cs Log Message: bye bye --- lesson01.cs DELETED --- --- Framework.cs DELETED --- --- Makefile DELETED --- --- lesson02.cs DELETED --- |
From: Tim R. <ti...@us...> - 2004-09-11 09:20:21
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24752 Modified Files: INSTALL Log Message: forgotten the GACUTIL_FLAG flag Index: INSTALL =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/INSTALL,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** INSTALL 11 Sep 2004 09:11:49 -0000 1.3 --- INSTALL 11 Sep 2004 09:20:12 -0000 1.4 *************** *** 19,21 **** MONO [1]: builds a mono specific platform library called csDragons.OpenGL.Mono.dll WINDOWS [0]: builds a winodws specific platform library called csDragons.OpenGL.Windows.dll ! GTK [1]: builds Gtk# Widgets if available \ No newline at end of file --- 19,24 ---- MONO [1]: builds a mono specific platform library called csDragons.OpenGL.Mono.dll WINDOWS [0]: builds a winodws specific platform library called csDragons.OpenGL.Windows.dll ! GTK [1]: builds Gtk# Widgets if available ! ! To parametrise the compile process the following parameters are used: ! GACUTIL_FLAGS: these flags are appended to the gacutil call to control its behaviour \ No newline at end of file |
From: Tim R. <ti...@us...> - 2004-09-11 09:16:34
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24242 Modified Files: Makefile Log Message: little error Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 11 Sep 2004 09:14:11 -0000 1.1 --- Makefile 11 Sep 2004 09:16:24 -0000 1.2 *************** *** 1,4 **** - MONO=mono - WINDOWS=windows all: ifeq ($(MONO),1) --- 1,2 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 09:14:19
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23889 Added Files: Makefile Log Message: missing in CVS --- NEW FILE: Makefile --- MONO=mono WINDOWS=windows all: ifeq ($(MONO),1) $(MAKE) -C mono endif ifeq ($(WINDOWS),1) $(MAKE) -C windows endif install: ifeq ($(MONO),1) $(MAKE) -C mono install endif ifeq ($(WINDOWS),1) $(MAKE) -C windows install endif uninstall: ifeq ($(MONO),1) $(MAKE) -C mono uninstall endif ifeq ($(WINDOWS),1) $(MAKE) -C windows uninstall endif clean: $(MAKE) -C mono clean $(MAKE) -C windows clean .IGNORE: clean .EXPORT_ALL_VARIABLES: .PHONY: clean |
From: Tim R. <ti...@us...> - 2004-09-11 09:11:58
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23372 Modified Files: INSTALL Makefile Log Message: set default build process to: Mono & Gtk# Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 11 Sep 2004 09:07:13 -0000 1.10 --- Makefile 11 Sep 2004 09:11:49 -0000 1.11 *************** *** 1,3 **** ! MONO=0 WINDOWS=0 GTK=1 --- 1,3 ---- ! MONO=1 WINDOWS=0 GTK=1 Index: INSTALL =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** INSTALL 11 Sep 2004 09:10:42 -0000 1.2 --- INSTALL 11 Sep 2004 09:11:49 -0000 1.3 *************** *** 17,21 **** There are a few flags (0=off, 1=on) to control the compile process. ! MONO: builds a mono specific platform library called csDragons.OpenGL.Mono.dll ! WINDOWS: builds a winodws specific platform library called csDragons.OpenGL.Windows.dll ! GTK: builds Gtk# Widgets if available \ No newline at end of file --- 17,21 ---- There are a few flags (0=off, 1=on) to control the compile process. ! MONO [1]: builds a mono specific platform library called csDragons.OpenGL.Mono.dll ! WINDOWS [0]: builds a winodws specific platform library called csDragons.OpenGL.Windows.dll ! GTK [1]: builds Gtk# Widgets if available \ No newline at end of file |
From: Tim R. <ti...@us...> - 2004-09-11 09:10:50
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23197 Modified Files: INSTALL Log Message: some very small documentation Index: INSTALL =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/INSTALL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** INSTALL 12 Jul 2004 17:14:16 -0000 1.1.1.1 --- INSTALL 11 Sep 2004 09:10:42 -0000 1.2 *************** *** 5,12 **** - .NET-Framework - just tested with Mono including libgdiplus - - - DoxyGen ! - Gtk# ( for embedding OpenGL into Widgets; currently not working ) --- 5,10 ---- - .NET-Framework - just tested with Mono including libgdiplus ! - Gtk# ( for embedding OpenGL into Widgets ) *************** *** 14,17 **** * Install * *********** ! #> make ! #> make install \ No newline at end of file --- 12,21 ---- * Install * *********** ! #> make <<OPTS>> ! #> make install ! ! There are a few flags (0=off, 1=on) to control the compile process. ! ! MONO: builds a mono specific platform library called csDragons.OpenGL.Mono.dll ! WINDOWS: builds a winodws specific platform library called csDragons.OpenGL.Windows.dll ! GTK: builds Gtk# Widgets if available \ No newline at end of file |
From: Tim R. <ti...@us...> - 2004-09-11 09:07:23
|
Update of /cvsroot/csdopenglnet/csdOpenGL/samples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22618/samples Modified Files: Makefile Makefile.gtk Log Message: Gtk support is now optional Index: Makefile.gtk =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/samples/Makefile.gtk,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.gtk 11 Sep 2004 08:39:28 -0000 1.8 --- Makefile.gtk 11 Sep 2004 09:07:14 -0000 1.9 *************** *** 5,8 **** --- 5,10 ---- LIBS_CSD=csDragons.OpenGL.dll csDragons.Math.dll csDragons.OpenGL.Tools.dll csDragons.OpenGL.Mono.dll LIBS=glib-sharp.dll gdk-sharp.dll gtk-sharp.dll $(LIBS_CSD) + DEMOS=gtkTriangle.exe gtkGears.exe gtkTexture.exe gtkFrame.exe gtkAdvanced.exe + LIBCONFIGS=$(foreach lib,$(LIBS_CSD),$(lib).config) PACKAGE=csDragons *************** *** 11,31 **** MCS=$(CC) $(OPTS) $(LIBOPTS) -r:System.Drawing -lib:/usr/lib/mono/gtk-sharp -lib:../GL -lib:../tools -lib:../math -lib:../platform/mono ! all: gtkTriangle.exe gtkGears.exe gtkTexture.exe gtkFrame.exe gtkAdvanced.exe $(LIBS_CSD) csDragons.OpenGL.dll: ! ln -sf ../GL/csDragons.OpenGL.dll* . ! ! csDragons.OpenGL.Mono.dll: ! ln -sf ../platform/mono/csDragons.OpenGL.Mono.dll* . - csDragons.OpenGL.Windows.dll: - ln -sf ../platform/windows/csDragons.OpenGL.Mono.dll* . - csDragons.Math.dll: ! ln -sf ../math/csDragons.Math.dll* . csDragons.OpenGL.Tools.dll: ! ln -sf ../tools/csDragons.OpenGL.Tools.dll* . %.exe:%.cs --- 13,37 ---- MCS=$(CC) $(OPTS) $(LIBOPTS) -r:System.Drawing -lib:/usr/lib/mono/gtk-sharp -lib:../GL -lib:../tools -lib:../math -lib:../platform/mono ! all: $(DEMOS) $(LIBS_CSD) csDragons.OpenGL.dll: ! ln -sf ../GL/csDragons.OpenGL.dll . ! ln -sf ../GL/csDragons.OpenGL.dll.config . csDragons.Math.dll: ! ln -sf ../math/csDragons.Math.dll . ! ln -sf ../math/csDragons.Math.dll.config . csDragons.OpenGL.Tools.dll: ! ln -sf ../tools/csDragons.OpenGL.Tools.dll . ! ln -sf ../tools/csDragons.OpenGL.Tools.dll.config . + csDragons.OpenGL.Mono.dll: + ln -sf ../tools/csDragons.OpenGL.Mono.dll . + ln -sf ../tools/csDragons.OpenGL.Mono.dll.config . + + csDragons.OpenGL.Windows.dll: + ln -sf ../tools/csDragons.OpenGL.Windows.dll . + ln -sf ../tools/csDragons.OpenGL.Windows.dll.config . %.exe:%.cs *************** *** 34,40 **** clean: ! rm -f *.exe ! rm -f *.dll ! rm -f *.so .IGNORE: --- 40,45 ---- clean: ! rm -f $(DEMOS) ! rm -f $(LIBS_CSD) $(LIBCONFIGS) .IGNORE: Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/samples/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 11 Sep 2004 08:39:28 -0000 1.9 --- Makefile 11 Sep 2004 09:07:14 -0000 1.10 *************** *** 6,23 **** MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/gtk-sharp -lib:../GL -lib:../math -lib:../tools PACKAGE=csDragons LIBOPTS=$(foreach lib,$(LIBS),-r $(lib)) ! all: triangle.exe texture.exe gears.exe $(LIBS) $(MAKE) -f Makefile.gtk csDragons.OpenGL.dll: ! ln -sf ../GL/csDragons.OpenGL.dll* . csDragons.Math.dll: ! ln -sf ../math/csDragons.Math.dll* . csDragons.OpenGL.Tools.dll: ! ln -sf ../tools/csDragons.OpenGL.Tools.dll* . %.exe:%.cs --- 6,30 ---- MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/gtk-sharp -lib:../GL -lib:../math -lib:../tools PACKAGE=csDragons + DEMOS=triangle.exe texture.exe gears.exe + LIBCONFIGS=$(foreach lib,$(LIBS),$(lib).config) LIBOPTS=$(foreach lib,$(LIBS),-r $(lib)) ! all: $(LIBS) $(DEMOS) ! ifeq ($(GTK),1) $(MAKE) -f Makefile.gtk + endif csDragons.OpenGL.dll: ! ln -sf ../GL/csDragons.OpenGL.dll . ! ln -sf ../GL/csDragons.OpenGL.dll.config . csDragons.Math.dll: ! ln -sf ../math/csDragons.Math.dll . ! ln -sf ../math/csDragons.Math.dll.config . csDragons.OpenGL.Tools.dll: ! ln -sf ../tools/csDragons.OpenGL.Tools.dll . ! ln -sf ../tools/csDragons.OpenGL.Tools.dll.config . %.exe:%.cs *************** *** 26,32 **** clean: $(MAKE) -f Makefile.gtk clean ! rm -f *.exe ! rm -f *.dll ! rm -f *.so .IGNORE: --- 33,38 ---- clean: $(MAKE) -f Makefile.gtk clean ! rm -f $(DEMOS) ! rm -f $(LIBS) $(LIBCONFIGS) .IGNORE: |
From: Tim R. <ti...@us...> - 2004-09-11 09:07:23
|
Update of /cvsroot/csdopenglnet/csdOpenGL/platform/mono In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22618/platform/mono Modified Files: Makefile Log Message: Gtk support is now optional Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/platform/mono/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 11 Sep 2004 08:10:42 -0000 1.1 --- Makefile 11 Sep 2004 09:07:13 -0000 1.2 *************** *** 1,4 **** FILES_SRC=GLXTokens.cs ../Exceptions.cs ! FILES_GTK=gtkArea.cs gtkContext.cs FILES=$(FILES_SRC) $(FILES_GTK) --- 1,7 ---- FILES_SRC=GLXTokens.cs ../Exceptions.cs ! ifeq ($(GTK),1) ! FILES_GTK=gtkArea.cs gtkContext.cs ! OPTS_GTK=-lib:/usr/lib/mono/gtk-sharp -r:gtk-sharp.dll -r:gdk-sharp.dll -r:glib-sharp.dll ! endif FILES=$(FILES_SRC) $(FILES_GTK) *************** *** 7,11 **** OPTS_SRC=-lib:../../GL -r:csDragons.OpenGL - OPTS_GTK=-lib:/usr/lib/mono/gtk-sharp -r:gtk-sharp.dll -r:gdk-sharp.dll -r:glib-sharp.dll OPTS=$(OPTS_SRC) $(OPTS_GTK) --- 10,13 ---- |
From: Tim R. <ti...@us...> - 2004-09-11 09:07:22
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22618 Modified Files: Makefile Log Message: Gtk support is now optional Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 11 Sep 2004 08:49:34 -0000 1.9 --- Makefile 11 Sep 2004 09:07:13 -0000 1.10 *************** *** 1,5 **** ! MONO=mono ! WIN=win ! PLATFORM=$(MONO) all: --- 1,5 ---- ! MONO=0 ! WINDOWS=0 ! GTK=1 all: *************** *** 10,18 **** $(MAKE) -C math $(MAKE) -C tools ! ifeq ($(PLATFORM),$(MONO)) ! $(MAKE) -C platform/mono ! else ! $(MAKE) -C platform/windows ! endif --- 10,14 ---- $(MAKE) -C math $(MAKE) -C tools ! $(MAKE) -C platform *************** *** 33,41 **** $(MAKE) -C math install $(MAKE) -C cbonding install ! ifeq ($(PLATFORM),$(MONO)) ! $(MAKE) -C platform/mono install ! else ! $(MAKE) -C platform/windows install ! endif uninstall: --- 29,33 ---- $(MAKE) -C math install $(MAKE) -C cbonding install ! $(MAKE) -C platform install uninstall: *************** *** 45,53 **** $(MAKE) -C cbonding uninstall $(MAKE) -C math uninstall ! ifeq ($(PLATFORM),$(MONO)) ! $(MAKE) -C platform/mono uninstall ! else ! $(MAKE) -C platform/windows uninstall ! endif clean: --- 37,41 ---- $(MAKE) -C cbonding uninstall $(MAKE) -C math uninstall ! $(MAKE) -C platform uninstall clean: *************** *** 60,65 **** $(MAKE) -C GL clean $(MAKE) -C Cg clean ! $(MAKE) -C platform/mono clean ! $(MAKE) -C platform/windows clean .IGNORE: --- 48,53 ---- $(MAKE) -C GL clean $(MAKE) -C Cg clean ! $(MAKE) -C platform clean ! $(MAKE) -C platform clean .IGNORE: |
From: Tim R. <ti...@us...> - 2004-09-11 08:49:46
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19817 Modified Files: ChangeLog Makefile Log Message: basic support for choosing between platforms Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile 11 Sep 2004 08:21:06 -0000 1.8 --- Makefile 11 Sep 2004 08:49:34 -0000 1.9 *************** *** 60,63 **** --- 60,65 ---- $(MAKE) -C GL clean $(MAKE) -C Cg clean + $(MAKE) -C platform/mono clean + $(MAKE) -C platform/windows clean .IGNORE: Index: ChangeLog =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ChangeLog 4 Sep 2004 08:33:44 -0000 1.9 --- ChangeLog 11 Sep 2004 08:49:34 -0000 1.10 *************** *** 1,2 **** --- 1,7 ---- + x.x.x: + restructuring for better dll usage + disjunctin between GL/CG and plattform specific bindings + Gtk# widget is now located in the platform.mono.dll, because X calls are used inside it + 0.2.0: added basic Cg support |
From: Tim R. <ti...@us...> - 2004-09-11 08:45:25
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19298 Modified Files: Makefile Log Message: adaption to new structure Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Makefile 11 Sep 2004 08:21:07 -0000 1.14 --- Makefile 11 Sep 2004 08:45:15 -0000 1.15 *************** *** 11,14 **** --- 11,15 ---- GAC=gacutil $(GACUTIL_FLAGS) DLL=csDragons.OpenGL.Cg.dll + DEMOS=demo.exe all: $(DLL) *************** *** 27,31 **** $(GEN) cgGL.xml ! demo: demo.exe csDragons.OpenGL.dll csDragons.OpenGL.dll: --- 28,32 ---- $(GEN) cgGL.xml ! demo: $(DEMOS) csDragons.OpenGL.dll csDragons.OpenGL.dll: *************** *** 47,52 **** clean: ! rm -f *.exe ! rm -f *.dll rm -f csdCgBase.cs rm -f csdCgGLBase.cs --- 48,53 ---- clean: ! rm -f $(DEMOS) ! rm -f csDragons.OpenGL.dll* rm -f csdCgBase.cs rm -f csdCgGLBase.cs |
From: Tim R. <ti...@us...> - 2004-09-11 08:45:11
|
Update of /cvsroot/csdopenglnet/csdOpenGL/Cg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19215 Modified Files: cgGL.xml cg.xml Log Message: mapping between windows and linux Index: cg.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/cg.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cg.xml 11 Sep 2004 08:10:40 -0000 1.2 --- cg.xml 11 Sep 2004 08:45:02 -0000 1.3 *************** *** 1,5 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>cg_8h.xml</xmlInput> ! <linkLibrary>libCg.so</linkLibrary> <className>csdCgBase</className> <upperClass>csDragons.OpenGL.GL</upperClass> --- 1,5 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>cg_8h.xml</xmlInput> ! <linkLibrary>cg.dll</linkLibrary> <className>csdCgBase</className> <upperClass>csDragons.OpenGL.GL</upperClass> Index: cgGL.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Cg/cgGL.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cgGL.xml 11 Sep 2004 08:10:40 -0000 1.3 --- cgGL.xml 11 Sep 2004 08:45:02 -0000 1.4 *************** *** 1,5 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>cgGL_8h.xml</xmlInput> ! <linkLibrary>libCgGL.so</linkLibrary> <className>csdCgGLBase</className> <upperClass>csdCgBase</upperClass> --- 1,5 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>cgGL_8h.xml</xmlInput> ! <linkLibrary>cgGL.dll</linkLibrary> <className>csdCgGLBase</className> <upperClass>csdCgBase</upperClass> |