From 3ba47f5708d15d6adaf31171b8ac119402c5324f Mon Sep 17 00:00:00 2001 From: spanne Date: Sun, 24 May 2009 12:31:43 +0000 Subject: [PATCH] Move all files related to Visual Studio 2008 into 2 directories, one for the normal DLL build, and one for the static build. We should do this for other IDEs, too. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@824 7f0cb862-5218-0410-a997-914c9d46530a --- .gitattributes | 37 ++- .gitignore | 76 ++++-- freeglut/freeglut/ChangeLog | 9 + .../CallbackMaker/CallbackMaker.vcproj | 195 ++++++++++++++ .../VisualStudio2008/Fractals/Fractals.vcproj | 195 ++++++++++++++ .../Fractals_random/Fractals_random.vcproj | 195 ++++++++++++++ .../VisualStudio2008/Lorenz/Lorenz.vcproj | 195 ++++++++++++++ .../freeglut/VisualStudio2008/One/One.vcproj | 195 ++++++++++++++ .../freeglut/VisualStudio2008/freeglut.sln | 83 ++++++ .../freeglut.vcproj} | 66 ++--- .../VisualStudio2008/shapes/shapes.vcproj | 195 ++++++++++++++ .../smooth_opengl3/smooth_opengl3.vcproj | 195 ++++++++++++++ .../CallbackMaker/CallbackMaker.vcproj | 196 ++++++++++++++ .../Fractals/Fractals.vcproj | 195 ++++++++++++++ .../Fractals_random/Fractals_random.vcproj | 195 ++++++++++++++ .../Lorenz/Lorenz.vcproj | 195 ++++++++++++++ .../VisualStudio2008Static/One/One.vcproj | 195 ++++++++++++++ .../VisualStudio2008Static/freeglut.sln | 83 ++++++ .../freeglut.vcproj} | 92 +++---- .../shapes/shapes.vcproj | 195 ++++++++++++++ .../smooth_opengl3/smooth_opengl3.vcproj | 195 ++++++++++++++ freeglut/freeglut/freeglut_vs2008.sln | 20 -- freeglut/freeglut/freeglut_vs2008_static.sln | 20 -- .../CallbackMakerStatic_vs2008.vcproj | 242 ----------------- .../CallbackMaker/CallbackMaker_vs2008.vcproj | 244 ------------------ .../Fractals/FractalsStatic_vs2008.vcproj | 242 ----------------- .../demos/Fractals/Fractals_vs2008.vcproj | 243 ----------------- .../Fractals_randomStatic_vs2008.vcproj | 242 ----------------- .../Fractals_random_vs2008.vcproj | 242 ----------------- .../demos/Lorenz/lorenzStatic_vs2008.vcproj | 242 ----------------- .../progs/demos/Lorenz/lorenz_vs2008.vcproj | 242 ----------------- .../progs/demos/One/oneStatic_vs2008.vcproj | 242 ----------------- .../progs/demos/One/one_vs2008.vcproj | 242 ----------------- .../freeglut/progs/demos/demos_vs2008.sln | 98 ------- .../demos/shapes/shapesStatic_vs2008.vcproj | 242 ----------------- .../progs/demos/shapes/shapes_vs2008.vcproj | 242 ----------------- .../smooth_opengl3Static_vs2008.vcproj | 242 ----------------- .../smooth_opengl3_vs2008.vcproj | 242 ----------------- 38 files changed, 3048 insertions(+), 3658 deletions(-) create mode 100644 freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/Lorenz/Lorenz.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/One/One.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/freeglut.sln rename freeglut/freeglut/{freeglut_vs2008.vcproj => VisualStudio2008/freeglut.vcproj} (85%) create mode 100644 freeglut/freeglut/VisualStudio2008/shapes/shapes.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008/smooth_opengl3/smooth_opengl3.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/CallbackMaker/CallbackMaker.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/Fractals/Fractals.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/Fractals_random/Fractals_random.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/Lorenz/Lorenz.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/One/One.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/freeglut.sln rename freeglut/freeglut/{freeglut_static_vs2008.vcproj => VisualStudio2008Static/freeglut.vcproj} (81%) create mode 100644 freeglut/freeglut/VisualStudio2008Static/shapes/shapes.vcproj create mode 100644 freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/smooth_opengl3.vcproj delete mode 100644 freeglut/freeglut/freeglut_vs2008.sln delete mode 100644 freeglut/freeglut/freeglut_vs2008_static.sln delete mode 100644 freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/One/one_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/demos_vs2008.sln delete mode 100644 freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.vcproj delete mode 100644 freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj diff --git a/.gitattributes b/.gitattributes index 97be754..bcce83c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,24 @@ freeglut/freeglut/NEWS svn_keywords=Author+Date+Id+Revision freeglut/freeglut/README svn_keywords=Author+Date+Id+Revision freeglut/freeglut/README.win32 svn_keywords=Author+Date+Id+Revision freeglut/freeglut/TODO svn_keywords=Author+Date+Id+Revision +freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj -text +freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj -text +freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj -text +freeglut/freeglut/VisualStudio2008/Lorenz/Lorenz.vcproj -text +freeglut/freeglut/VisualStudio2008/One/One.vcproj -text +freeglut/freeglut/VisualStudio2008/freeglut.sln -text +freeglut/freeglut/VisualStudio2008/freeglut.vcproj -text +freeglut/freeglut/VisualStudio2008/shapes/shapes.vcproj -text +freeglut/freeglut/VisualStudio2008/smooth_opengl3/smooth_opengl3.vcproj -text +freeglut/freeglut/VisualStudio2008Static/CallbackMaker/CallbackMaker.vcproj -text +freeglut/freeglut/VisualStudio2008Static/Fractals/Fractals.vcproj -text +freeglut/freeglut/VisualStudio2008Static/Fractals_random/Fractals_random.vcproj -text +freeglut/freeglut/VisualStudio2008Static/Lorenz/Lorenz.vcproj -text +freeglut/freeglut/VisualStudio2008Static/One/One.vcproj -text +freeglut/freeglut/VisualStudio2008Static/freeglut.sln -text +freeglut/freeglut/VisualStudio2008Static/freeglut.vcproj -text +freeglut/freeglut/VisualStudio2008Static/shapes/shapes.vcproj -text +freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/smooth_opengl3.vcproj -text freeglut/freeglut/autogen.sh svn_keywords=Author+Date+Id+Revision freeglut/freeglut/configure.ac svn_keywords=Author+Date+Id+Revision freeglut/freeglut/doc/Makefile.am svn_keywords=Author+Date+Id+Revision @@ -37,10 +55,6 @@ freeglut/freeglut/freeglut_static.dep -text freeglut/freeglut/freeglut_static.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/freeglut_static.mak -text freeglut/freeglut/freeglut_static.tgt svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/freeglut_static_vs2008.vcproj -text -freeglut/freeglut/freeglut_vs2008.sln -text -freeglut/freeglut/freeglut_vs2008.vcproj -text -freeglut/freeglut/freeglut_vs2008_static.sln -text freeglut/freeglut/include/GL/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/include/GL/freeglut.h svn_keywords=Author+Date+Id+Revision freeglut/freeglut/include/GL/freeglut_ext.h svn_keywords=Author+Date+Id+Revision @@ -51,20 +65,14 @@ freeglut/freeglut/progs/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj -text freeglut/freeglut/progs/demos/CallbackMaker/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals/Fractals.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals/FractalsStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj -text freeglut/freeglut/progs/demos/Fractals/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals/fractals.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals/fractals.dat svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals_random/Fractals_random.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj -text freeglut/freeglut/progs/demos/Fractals_random/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals_random/fractals.dat svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Fractals_random/fractals_random.c svn_keywords=Author+Date+Id+Revision @@ -72,29 +80,20 @@ freeglut/freeglut/progs/demos/Lorenz/Makefile.am svn_keywords=Author+Date+Id+Rev freeglut/freeglut/progs/demos/Lorenz/lorenz.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Lorenz/lorenz.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/Lorenz/lorenzStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj -text freeglut/freeglut/progs/demos/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/One/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/One/one.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/One/one.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/One/oneStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/One/one_vs2008.vcproj -text freeglut/freeglut/progs/demos/demos.dsw svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/demos_vs2008.sln -text freeglut/freeglut/progs/demos/shapes/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/shapes/shapes.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/shapes/shapes.dsp svn_keywords=Author+Date+Id+Revision freeglut/freeglut/progs/demos/shapes/shapesStatic.dsp svn_keywords=Author+Date+Id+Revision -freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj -text -freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj -text freeglut/freeglut/progs/demos/smooth_opengl3/Makefile.am -text freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3.c -text freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3.dsp -text freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static.dsp -text -freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.vcproj -text -freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj -text freeglut/freeglut/src/Makefile.am svn_keywords=Author+Date+Id+Revision freeglut/freeglut/src/freeglut_callbacks.c svn_keywords=Author+Date+Id+Revision freeglut/freeglut/src/freeglut_cursor.c svn_keywords=Author+Date+Id+Revision diff --git a/.gitignore b/.gitignore index d6c4f12..9eca391 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,58 @@ -freeglut/freeglut/*.ncb -freeglut/freeglut/*.suo -freeglut/freeglut/Debug -freeglut/freeglut/DebugStatic freeglut/freeglut/INSTALL freeglut/freeglut/Makefile freeglut/freeglut/Makefile.in -freeglut/freeglut/Release -freeglut/freeglut/ReleaseStatic +freeglut/freeglut/VisualStudio2008/*.user +freeglut/freeglut/VisualStudio2008/CallbackMaker/*.user +freeglut/freeglut/VisualStudio2008/CallbackMaker/Debug +freeglut/freeglut/VisualStudio2008/CallbackMaker/Release +freeglut/freeglut/VisualStudio2008/Debug +freeglut/freeglut/VisualStudio2008/Fractals/*.user +freeglut/freeglut/VisualStudio2008/Fractals/Debug +freeglut/freeglut/VisualStudio2008/Fractals/Release +freeglut/freeglut/VisualStudio2008/Fractals_random/*.user +freeglut/freeglut/VisualStudio2008/Fractals_random/Debug +freeglut/freeglut/VisualStudio2008/Fractals_random/Release +freeglut/freeglut/VisualStudio2008/Lorenz/*.user +freeglut/freeglut/VisualStudio2008/Lorenz/Debug +freeglut/freeglut/VisualStudio2008/Lorenz/Release +freeglut/freeglut/VisualStudio2008/One/*.user +freeglut/freeglut/VisualStudio2008/One/Debug +freeglut/freeglut/VisualStudio2008/One/Release +freeglut/freeglut/VisualStudio2008/Release +freeglut/freeglut/VisualStudio2008/freeglut.ncb +freeglut/freeglut/VisualStudio2008/freeglut.suo +freeglut/freeglut/VisualStudio2008/shapes/*.user +freeglut/freeglut/VisualStudio2008/shapes/Debug +freeglut/freeglut/VisualStudio2008/shapes/Release +freeglut/freeglut/VisualStudio2008/smooth_opengl3/*.user +freeglut/freeglut/VisualStudio2008/smooth_opengl3/Debug +freeglut/freeglut/VisualStudio2008/smooth_opengl3/Release +freeglut/freeglut/VisualStudio2008Static/*.user +freeglut/freeglut/VisualStudio2008Static/CallbackMaker/*.user +freeglut/freeglut/VisualStudio2008Static/CallbackMaker/Debug +freeglut/freeglut/VisualStudio2008Static/CallbackMaker/Release +freeglut/freeglut/VisualStudio2008Static/Debug +freeglut/freeglut/VisualStudio2008Static/Fractals/*.user +freeglut/freeglut/VisualStudio2008Static/Fractals/Debug +freeglut/freeglut/VisualStudio2008Static/Fractals/Release +freeglut/freeglut/VisualStudio2008Static/Fractals_random/*.user +freeglut/freeglut/VisualStudio2008Static/Fractals_random/Debug +freeglut/freeglut/VisualStudio2008Static/Fractals_random/Release +freeglut/freeglut/VisualStudio2008Static/Lorenz/*.user +freeglut/freeglut/VisualStudio2008Static/Lorenz/Debug +freeglut/freeglut/VisualStudio2008Static/Lorenz/Release +freeglut/freeglut/VisualStudio2008Static/One/*.user +freeglut/freeglut/VisualStudio2008Static/One/Debug +freeglut/freeglut/VisualStudio2008Static/One/Release +freeglut/freeglut/VisualStudio2008Static/Release +freeglut/freeglut/VisualStudio2008Static/freeglut.ncb +freeglut/freeglut/VisualStudio2008Static/freeglut.suo +freeglut/freeglut/VisualStudio2008Static/shapes/*.user +freeglut/freeglut/VisualStudio2008Static/shapes/Debug +freeglut/freeglut/VisualStudio2008Static/shapes/Release +freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/*.user +freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/Debug +freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/Release freeglut/freeglut/aclocal.m4 freeglut/freeglut/autom4te.cache freeglut/freeglut/autoscan.log @@ -26,8 +72,6 @@ freeglut/freeglut/depcomp freeglut/freeglut/doc/Makefile freeglut/freeglut/doc/Makefile.in freeglut/freeglut/freeglut-*.tar.gz -freeglut/freeglut/freeglut_static_vs2008.vcproj.*.user -freeglut/freeglut/freeglut_vs2008.vcproj.*.user freeglut/freeglut/include/GL/Makefile freeglut/freeglut/include/GL/Makefile.in freeglut/freeglut/include/Makefile @@ -43,22 +87,16 @@ freeglut/freeglut/progs/demos/CallbackMaker/.deps freeglut/freeglut/progs/demos/CallbackMaker/.libs freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker.exe -freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj.*.user freeglut/freeglut/progs/demos/CallbackMaker/Makefile freeglut/freeglut/progs/demos/CallbackMaker/Makefile.in freeglut/freeglut/progs/demos/Fractals/.deps freeglut/freeglut/progs/demos/Fractals/.libs -freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.*.user -freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj.*.user freeglut/freeglut/progs/demos/Fractals/Makefile freeglut/freeglut/progs/demos/Fractals/Makefile.in freeglut/freeglut/progs/demos/Fractals/fractals freeglut/freeglut/progs/demos/Fractals/fractals.exe freeglut/freeglut/progs/demos/Fractals_random/.deps freeglut/freeglut/progs/demos/Fractals_random/.libs -freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj.*.user freeglut/freeglut/progs/demos/Fractals_random/Makefile freeglut/freeglut/progs/demos/Fractals_random/Makefile.in freeglut/freeglut/progs/demos/Fractals_random/fractals_random @@ -69,8 +107,6 @@ freeglut/freeglut/progs/demos/Lorenz/Makefile freeglut/freeglut/progs/demos/Lorenz/Makefile.in freeglut/freeglut/progs/demos/Lorenz/lorenz freeglut/freeglut/progs/demos/Lorenz/lorenz.exe -freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj.*.user freeglut/freeglut/progs/demos/Makefile freeglut/freeglut/progs/demos/Makefile.in freeglut/freeglut/progs/demos/One/.deps @@ -79,25 +115,17 @@ freeglut/freeglut/progs/demos/One/Makefile freeglut/freeglut/progs/demos/One/Makefile.in freeglut/freeglut/progs/demos/One/one freeglut/freeglut/progs/demos/One/one.exe -freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/One/one_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/demos_vs2008.ncb -freeglut/freeglut/progs/demos/demos_vs2008.suo freeglut/freeglut/progs/demos/shapes/.deps freeglut/freeglut/progs/demos/shapes/.libs freeglut/freeglut/progs/demos/shapes/Makefile freeglut/freeglut/progs/demos/shapes/Makefile.in freeglut/freeglut/progs/demos/shapes/shapes freeglut/freeglut/progs/demos/shapes/shapes.exe -freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj.*.user -freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj.*.user freeglut/freeglut/progs/demos/smooth_opengl3/.deps freeglut/freeglut/progs/demos/smooth_opengl3/Makefile freeglut/freeglut/progs/demos/smooth_opengl3/Makefile.in freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3 freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3.exe -freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.*.user -freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj.*.user freeglut/freeglut/src/*.la freeglut/freeglut/src/*.lo freeglut/freeglut/src/.deps diff --git a/freeglut/freeglut/ChangeLog b/freeglut/freeglut/ChangeLog index 0e23a81..4da606b 100644 --- a/freeglut/freeglut/ChangeLog +++ b/freeglut/freeglut/ChangeLog @@ -1,4 +1,13 @@ +2009-05-24 Sven Panne + + * freeglut_static_vs2008.vcproj,freeglut_vs2008.vcproj, + freeglut_vs2008.sln,freeglut_vs2008_static.sln: Move all files related + to Visual Studio 2008 into 2 directories, one for the normal DLL + build, and one for the static build. We should do this for other IDEs, + too. + 2009-05-22 Sven Panne + * include/GL/freeglut_std.h: Avoid warnings when the ATEXIT_HACK is used with GCC, making the hack even uglier. diff --git a/freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj b/freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj new file mode 100644 index 0000000..97f5eb0 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj b/freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj new file mode 100644 index 0000000..f6e6650 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj b/freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj new file mode 100644 index 0000000..3a49205 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/Lorenz/Lorenz.vcproj b/freeglut/freeglut/VisualStudio2008/Lorenz/Lorenz.vcproj new file mode 100644 index 0000000..5554e7f --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/Lorenz/Lorenz.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/One/One.vcproj b/freeglut/freeglut/VisualStudio2008/One/One.vcproj new file mode 100644 index 0000000..3a63bbe --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/One/One.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/freeglut.sln b/freeglut/freeglut/VisualStudio2008/freeglut.sln new file mode 100644 index 0000000..b203820 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/freeglut.sln @@ -0,0 +1,83 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual C++ Express 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut.vcproj", "{1AE4E979-0D35-4747-BF8E-DD60358F49DB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackMaker", "CallbackMaker\CallbackMaker.vcproj", "{6383110F-E0DA-4604-A510-63A46FCB844B}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals", "Fractals\Fractals.vcproj", "{289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals_random", "Fractals_random\Fractals_random.vcproj", "{0D61E7A8-BF10-4C13-B5F4-971851C89E23}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Lorenz", "Lorenz\Lorenz.vcproj", "{6805E1E3-F437-4621-AA68-0778BDEE51EF}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "One", "One\One.vcproj", "{6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shapes", "shapes\shapes.vcproj", "{9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "smooth_opengl3", "smooth_opengl3\smooth_opengl3.vcproj", "{BEA6A000-DB05-4410-9863-42AAAD57AA1E}" + ProjectSection(ProjectDependencies) = postProject + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} = {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug|Win32.ActiveCfg = Debug|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug|Win32.Build.0 = Debug|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.ActiveCfg = Release|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.Build.0 = Release|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Debug|Win32.ActiveCfg = Debug|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Debug|Win32.Build.0 = Debug|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Release|Win32.ActiveCfg = Release|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Release|Win32.Build.0 = Release|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Debug|Win32.ActiveCfg = Debug|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Debug|Win32.Build.0 = Debug|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Release|Win32.ActiveCfg = Release|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Release|Win32.Build.0 = Release|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Debug|Win32.ActiveCfg = Debug|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Debug|Win32.Build.0 = Debug|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Release|Win32.ActiveCfg = Release|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Release|Win32.Build.0 = Release|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Debug|Win32.ActiveCfg = Debug|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Debug|Win32.Build.0 = Debug|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Release|Win32.ActiveCfg = Release|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Release|Win32.Build.0 = Release|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Debug|Win32.ActiveCfg = Debug|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Debug|Win32.Build.0 = Debug|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Release|Win32.ActiveCfg = Release|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Release|Win32.Build.0 = Release|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Debug|Win32.ActiveCfg = Debug|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Debug|Win32.Build.0 = Debug|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Release|Win32.ActiveCfg = Release|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Release|Win32.Build.0 = Release|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Debug|Win32.ActiveCfg = Debug|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Debug|Win32.Build.0 = Debug|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Release|Win32.ActiveCfg = Release|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/freeglut/freeglut/freeglut_vs2008.vcproj b/freeglut/freeglut/VisualStudio2008/freeglut.vcproj similarity index 85% rename from freeglut/freeglut/freeglut_vs2008.vcproj rename to freeglut/freeglut/VisualStudio2008/freeglut.vcproj index 71f2a69..47b698d 100644 --- a/freeglut/freeglut/freeglut_vs2008.vcproj +++ b/freeglut/freeglut/VisualStudio2008/freeglut.vcproj @@ -42,7 +42,7 @@ Name="VCCLCompilerTool" AdditionalOptions="/D "_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES"" Optimization="0" - AdditionalIncludeDirectories="include" + AdditionalIncludeDirectories="..\include" PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;_USRDLL;FREEGLUT_EXPORTS" MinimalRebuild="true" BasicRuntimeChecks="3" @@ -65,7 +65,7 @@ Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" LinkIncremental="2" - ModuleDefinitionFile=".\src\freeglutdll.def" + ModuleDefinitionFile="..\src\freeglutdll.def" GenerateDebugInformation="true" RandomizedBaseAddress="1" DataExecutionPrevention="0" @@ -123,7 +123,7 @@ Name="VCCLCompilerTool" Optimization="2" EnableIntrinsicFunctions="true" - AdditionalIncludeDirectories="include" + AdditionalIncludeDirectories="..\include" PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;_USRDLL;FREEGLUT_EXPORTS" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -144,7 +144,7 @@ Name="VCLinkerTool" OutputFile="$(OutDir)\$(ProjectName).dll" LinkIncremental="1" - ModuleDefinitionFile="src\freeglutdll.def" + ModuleDefinitionFile="..\src\freeglutdll.def" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName).lib" @@ -181,7 +181,7 @@ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" > diff --git a/freeglut/freeglut/VisualStudio2008/shapes/shapes.vcproj b/freeglut/freeglut/VisualStudio2008/shapes/shapes.vcproj new file mode 100644 index 0000000..5a3d5ac --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/shapes/shapes.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008/smooth_opengl3/smooth_opengl3.vcproj b/freeglut/freeglut/VisualStudio2008/smooth_opengl3/smooth_opengl3.vcproj new file mode 100644 index 0000000..801eb47 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008/smooth_opengl3/smooth_opengl3.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/CallbackMaker/CallbackMaker.vcproj b/freeglut/freeglut/VisualStudio2008Static/CallbackMaker/CallbackMaker.vcproj new file mode 100644 index 0000000..7b460fd --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/CallbackMaker/CallbackMaker.vcproj @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/Fractals/Fractals.vcproj b/freeglut/freeglut/VisualStudio2008Static/Fractals/Fractals.vcproj new file mode 100644 index 0000000..495b9da --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/Fractals/Fractals.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/Fractals_random/Fractals_random.vcproj b/freeglut/freeglut/VisualStudio2008Static/Fractals_random/Fractals_random.vcproj new file mode 100644 index 0000000..b3d33d1 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/Fractals_random/Fractals_random.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/Lorenz/Lorenz.vcproj b/freeglut/freeglut/VisualStudio2008Static/Lorenz/Lorenz.vcproj new file mode 100644 index 0000000..8de97fa --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/Lorenz/Lorenz.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/One/One.vcproj b/freeglut/freeglut/VisualStudio2008Static/One/One.vcproj new file mode 100644 index 0000000..77217bd --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/One/One.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/freeglut.sln b/freeglut/freeglut/VisualStudio2008Static/freeglut.sln new file mode 100644 index 0000000..b312fa7 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/freeglut.sln @@ -0,0 +1,83 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual C++ Express 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut.vcproj", "{71AF75A0-52B6-4C1B-8E56-CB31C6741A18}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackMaker", "CallbackMaker\CallbackMaker.vcproj", "{ADF54794-B47A-4888-890D-5031AE855C88}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals", "Fractals\Fractals.vcproj", "{7FA2BA06-5D6E-4F04-9318-94D4FA422D2C}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals_random", "Fractals_random\Fractals_random.vcproj", "{EABF2996-B2AF-482E-B0A9-D731C6C68D86}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Lorenz", "Lorenz\Lorenz.vcproj", "{BE38EDFE-8D60-49A2-9787-0D54AC786199}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "One", "One\One.vcproj", "{3657FA6A-5787-4213-B266-D55710C2D37A}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shapes", "shapes\shapes.vcproj", "{8F422123-347B-4591-905C-0C308FC3A353}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "smooth_opengl3", "smooth_opengl3\smooth_opengl3.vcproj", "{D3710CE1-3211-4E03-931E-CE14336815FD}" + ProjectSection(ProjectDependencies) = postProject + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} = {71AF75A0-52B6-4C1B-8E56-CB31C6741A18} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Debug|Win32.ActiveCfg = Debug|Win32 + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Debug|Win32.Build.0 = Debug|Win32 + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Release|Win32.ActiveCfg = Release|Win32 + {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Release|Win32.Build.0 = Release|Win32 + {ADF54794-B47A-4888-890D-5031AE855C88}.Debug|Win32.ActiveCfg = Debug|Win32 + {ADF54794-B47A-4888-890D-5031AE855C88}.Debug|Win32.Build.0 = Debug|Win32 + {ADF54794-B47A-4888-890D-5031AE855C88}.Release|Win32.ActiveCfg = Release|Win32 + {ADF54794-B47A-4888-890D-5031AE855C88}.Release|Win32.Build.0 = Release|Win32 + {7FA2BA06-5D6E-4F04-9318-94D4FA422D2C}.Debug|Win32.ActiveCfg = Debug|Win32 + {7FA2BA06-5D6E-4F04-9318-94D4FA422D2C}.Debug|Win32.Build.0 = Debug|Win32 + {7FA2BA06-5D6E-4F04-9318-94D4FA422D2C}.Release|Win32.ActiveCfg = Release|Win32 + {7FA2BA06-5D6E-4F04-9318-94D4FA422D2C}.Release|Win32.Build.0 = Release|Win32 + {EABF2996-B2AF-482E-B0A9-D731C6C68D86}.Debug|Win32.ActiveCfg = Debug|Win32 + {EABF2996-B2AF-482E-B0A9-D731C6C68D86}.Debug|Win32.Build.0 = Debug|Win32 + {EABF2996-B2AF-482E-B0A9-D731C6C68D86}.Release|Win32.ActiveCfg = Release|Win32 + {EABF2996-B2AF-482E-B0A9-D731C6C68D86}.Release|Win32.Build.0 = Release|Win32 + {BE38EDFE-8D60-49A2-9787-0D54AC786199}.Debug|Win32.ActiveCfg = Debug|Win32 + {BE38EDFE-8D60-49A2-9787-0D54AC786199}.Debug|Win32.Build.0 = Debug|Win32 + {BE38EDFE-8D60-49A2-9787-0D54AC786199}.Release|Win32.ActiveCfg = Release|Win32 + {BE38EDFE-8D60-49A2-9787-0D54AC786199}.Release|Win32.Build.0 = Release|Win32 + {3657FA6A-5787-4213-B266-D55710C2D37A}.Debug|Win32.ActiveCfg = Debug|Win32 + {3657FA6A-5787-4213-B266-D55710C2D37A}.Debug|Win32.Build.0 = Debug|Win32 + {3657FA6A-5787-4213-B266-D55710C2D37A}.Release|Win32.ActiveCfg = Release|Win32 + {3657FA6A-5787-4213-B266-D55710C2D37A}.Release|Win32.Build.0 = Release|Win32 + {8F422123-347B-4591-905C-0C308FC3A353}.Debug|Win32.ActiveCfg = Debug|Win32 + {8F422123-347B-4591-905C-0C308FC3A353}.Debug|Win32.Build.0 = Debug|Win32 + {8F422123-347B-4591-905C-0C308FC3A353}.Release|Win32.ActiveCfg = Release|Win32 + {8F422123-347B-4591-905C-0C308FC3A353}.Release|Win32.Build.0 = Release|Win32 + {D3710CE1-3211-4E03-931E-CE14336815FD}.Debug|Win32.ActiveCfg = Debug|Win32 + {D3710CE1-3211-4E03-931E-CE14336815FD}.Debug|Win32.Build.0 = Debug|Win32 + {D3710CE1-3211-4E03-931E-CE14336815FD}.Release|Win32.ActiveCfg = Release|Win32 + {D3710CE1-3211-4E03-931E-CE14336815FD}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/freeglut/freeglut/freeglut_static_vs2008.vcproj b/freeglut/freeglut/VisualStudio2008Static/freeglut.vcproj similarity index 81% rename from freeglut/freeglut/freeglut_static_vs2008.vcproj rename to freeglut/freeglut/VisualStudio2008Static/freeglut.vcproj index 4527788..33ae838 100644 --- a/freeglut/freeglut/freeglut_static_vs2008.vcproj +++ b/freeglut/freeglut/VisualStudio2008Static/freeglut.vcproj @@ -1,8 +1,8 @@ @@ -16,8 +16,8 @@ @@ -144,8 +133,7 @@ /> diff --git a/freeglut/freeglut/VisualStudio2008Static/shapes/shapes.vcproj b/freeglut/freeglut/VisualStudio2008Static/shapes/shapes.vcproj new file mode 100644 index 0000000..2328dd5 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/shapes/shapes.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/smooth_opengl3.vcproj b/freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/smooth_opengl3.vcproj new file mode 100644 index 0000000..b095aa9 --- /dev/null +++ b/freeglut/freeglut/VisualStudio2008Static/smooth_opengl3/smooth_opengl3.vcproj @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/freeglut_vs2008.sln b/freeglut/freeglut/freeglut_vs2008.sln deleted file mode 100644 index fe066f9..0000000 --- a/freeglut/freeglut/freeglut_vs2008.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual C++ Express 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut_vs2008.vcproj", "{1AE4E979-0D35-4747-BF8E-DD60358F49DB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug|Win32.ActiveCfg = Debug|Win32 - {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug|Win32.Build.0 = Debug|Win32 - {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.ActiveCfg = Release|Win32 - {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/freeglut/freeglut/freeglut_vs2008_static.sln b/freeglut/freeglut/freeglut_vs2008_static.sln deleted file mode 100644 index 1c1754a..0000000 --- a/freeglut/freeglut/freeglut_vs2008_static.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual C++ Express 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut_static", "freeglut_static_vs2008.vcproj", "{71AF75A0-52B6-4C1B-8E56-CB31C6741A18}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Debug|Win32.ActiveCfg = Debug|Win32 - {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Debug|Win32.Build.0 = Debug|Win32 - {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Release|Win32.ActiveCfg = Release|Win32 - {71AF75A0-52B6-4C1B-8E56-CB31C6741A18}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj deleted file mode 100644 index 0ef6324..0000000 --- a/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMakerStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj b/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj deleted file mode 100644 index d250205..0000000 --- a/freeglut/freeglut/progs/demos/CallbackMaker/CallbackMaker_vs2008.vcproj +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.vcproj deleted file mode 100644 index 9190507..0000000 --- a/freeglut/freeglut/progs/demos/Fractals/FractalsStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj b/freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj deleted file mode 100644 index 5f805bb..0000000 --- a/freeglut/freeglut/progs/demos/Fractals/Fractals_vs2008.vcproj +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj deleted file mode 100644 index a6efcf7..0000000 --- a/freeglut/freeglut/progs/demos/Fractals_random/Fractals_randomStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj b/freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj deleted file mode 100644 index ddb3954..0000000 --- a/freeglut/freeglut/progs/demos/Fractals_random/Fractals_random_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj deleted file mode 100644 index 8ea4657..0000000 --- a/freeglut/freeglut/progs/demos/Lorenz/lorenzStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj b/freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj deleted file mode 100644 index 05f3476..0000000 --- a/freeglut/freeglut/progs/demos/Lorenz/lorenz_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj deleted file mode 100644 index ed60b8d..0000000 --- a/freeglut/freeglut/progs/demos/One/oneStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/One/one_vs2008.vcproj b/freeglut/freeglut/progs/demos/One/one_vs2008.vcproj deleted file mode 100644 index f0e92ce..0000000 --- a/freeglut/freeglut/progs/demos/One/one_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/demos_vs2008.sln b/freeglut/freeglut/progs/demos/demos_vs2008.sln deleted file mode 100644 index 3536b4f..0000000 --- a/freeglut/freeglut/progs/demos/demos_vs2008.sln +++ /dev/null @@ -1,98 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackMaker", "CallbackMaker\CallbackMaker_vs2008.vcproj", "{48ADF2AE-57EB-4181-9372-AD93ACDCEA40}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackMakerStatic", "CallbackMaker\CallbackMakerStatic_vs2008.vcproj", "{6D87E6B6-E8C2-4CCC-8401-C6401A4D352A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals", "Fractals\Fractals_vs2008.vcproj", "{D4EF47E1-F06F-4CCB-B075-FB375FDFD227}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FractalsStatic", "Fractals\FractalsStatic_vs2008.vcproj", "{39C67BF0-47C3-47EA-9B42-BE9A58884710}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals_random", "Fractals_random\Fractals_random_vs2008.vcproj", "{13AD2F11-BB2E-43F4-88F7-3BAD67381D8B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals_randomStatic", "Fractals_random\Fractals_randomStatic_vs2008.vcproj", "{098A1374-0952-4592-BE6C-94626E1BBB8F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lorenz", "Lorenz\lorenz_vs2008.vcproj", "{A40A8FBD-521C-48CB-AF4A-897937B49A47}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lorenzStatic", "Lorenz\lorenzStatic_vs2008.vcproj", "{48B68B40-41EE-45ED-A778-29AD518DA24F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "one", "One\one_vs2008.vcproj", "{3B276C44-0AAF-4D2E-894D-FAA905188BE9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneStatic", "One\oneStatic_vs2008.vcproj", "{2A9A25A7-739C-441E-A8D1-6F3A81FB4F9D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shapes", "shapes\shapes_vs2008.vcproj", "{D6DD993F-C0A0-4147-ADD7-D763FC1624B5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shapesStatic", "shapes\shapesStatic_vs2008.vcproj", "{175733F5-16A1-4907-857B-6EB283D937B5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "smooth_opengl3", "smooth_opengl3\smooth_opengl3_vs2008.vcproj", "{E9B551E1-3EB2-4FE5-850B-CD1B35E3F617}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "smooth_opengl3Static", "smooth_opengl3\smooth_opengl3Static_vs2008.vcproj", "{C4AA0584-9CF1-4511-9675-90B353270436}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {48ADF2AE-57EB-4181-9372-AD93ACDCEA40}.Debug|Win32.ActiveCfg = Debug|Win32 - {48ADF2AE-57EB-4181-9372-AD93ACDCEA40}.Debug|Win32.Build.0 = Debug|Win32 - {48ADF2AE-57EB-4181-9372-AD93ACDCEA40}.Release|Win32.ActiveCfg = Release|Win32 - {48ADF2AE-57EB-4181-9372-AD93ACDCEA40}.Release|Win32.Build.0 = Release|Win32 - {6D87E6B6-E8C2-4CCC-8401-C6401A4D352A}.Debug|Win32.ActiveCfg = Debug|Win32 - {6D87E6B6-E8C2-4CCC-8401-C6401A4D352A}.Debug|Win32.Build.0 = Debug|Win32 - {6D87E6B6-E8C2-4CCC-8401-C6401A4D352A}.Release|Win32.ActiveCfg = Release|Win32 - {6D87E6B6-E8C2-4CCC-8401-C6401A4D352A}.Release|Win32.Build.0 = Release|Win32 - {D4EF47E1-F06F-4CCB-B075-FB375FDFD227}.Debug|Win32.ActiveCfg = Debug|Win32 - {D4EF47E1-F06F-4CCB-B075-FB375FDFD227}.Debug|Win32.Build.0 = Debug|Win32 - {D4EF47E1-F06F-4CCB-B075-FB375FDFD227}.Release|Win32.ActiveCfg = Release|Win32 - {D4EF47E1-F06F-4CCB-B075-FB375FDFD227}.Release|Win32.Build.0 = Release|Win32 - {39C67BF0-47C3-47EA-9B42-BE9A58884710}.Debug|Win32.ActiveCfg = Debug|Win32 - {39C67BF0-47C3-47EA-9B42-BE9A58884710}.Debug|Win32.Build.0 = Debug|Win32 - {39C67BF0-47C3-47EA-9B42-BE9A58884710}.Release|Win32.ActiveCfg = Release|Win32 - {39C67BF0-47C3-47EA-9B42-BE9A58884710}.Release|Win32.Build.0 = Release|Win32 - {13AD2F11-BB2E-43F4-88F7-3BAD67381D8B}.Debug|Win32.ActiveCfg = Debug|Win32 - {13AD2F11-BB2E-43F4-88F7-3BAD67381D8B}.Debug|Win32.Build.0 = Debug|Win32 - {13AD2F11-BB2E-43F4-88F7-3BAD67381D8B}.Release|Win32.ActiveCfg = Release|Win32 - {13AD2F11-BB2E-43F4-88F7-3BAD67381D8B}.Release|Win32.Build.0 = Release|Win32 - {098A1374-0952-4592-BE6C-94626E1BBB8F}.Debug|Win32.ActiveCfg = Debug|Win32 - {098A1374-0952-4592-BE6C-94626E1BBB8F}.Debug|Win32.Build.0 = Debug|Win32 - {098A1374-0952-4592-BE6C-94626E1BBB8F}.Release|Win32.ActiveCfg = Release|Win32 - {098A1374-0952-4592-BE6C-94626E1BBB8F}.Release|Win32.Build.0 = Release|Win32 - {A40A8FBD-521C-48CB-AF4A-897937B49A47}.Debug|Win32.ActiveCfg = Debug|Win32 - {A40A8FBD-521C-48CB-AF4A-897937B49A47}.Debug|Win32.Build.0 = Debug|Win32 - {A40A8FBD-521C-48CB-AF4A-897937B49A47}.Release|Win32.ActiveCfg = Release|Win32 - {A40A8FBD-521C-48CB-AF4A-897937B49A47}.Release|Win32.Build.0 = Release|Win32 - {48B68B40-41EE-45ED-A778-29AD518DA24F}.Debug|Win32.ActiveCfg = Debug|Win32 - {48B68B40-41EE-45ED-A778-29AD518DA24F}.Debug|Win32.Build.0 = Debug|Win32 - {48B68B40-41EE-45ED-A778-29AD518DA24F}.Release|Win32.ActiveCfg = Release|Win32 - {48B68B40-41EE-45ED-A778-29AD518DA24F}.Release|Win32.Build.0 = Release|Win32 - {3B276C44-0AAF-4D2E-894D-FAA905188BE9}.Debug|Win32.ActiveCfg = Debug|Win32 - {3B276C44-0AAF-4D2E-894D-FAA905188BE9}.Debug|Win32.Build.0 = Debug|Win32 - {3B276C44-0AAF-4D2E-894D-FAA905188BE9}.Release|Win32.ActiveCfg = Release|Win32 - {3B276C44-0AAF-4D2E-894D-FAA905188BE9}.Release|Win32.Build.0 = Release|Win32 - {2A9A25A7-739C-441E-A8D1-6F3A81FB4F9D}.Debug|Win32.ActiveCfg = Debug|Win32 - {2A9A25A7-739C-441E-A8D1-6F3A81FB4F9D}.Debug|Win32.Build.0 = Debug|Win32 - {2A9A25A7-739C-441E-A8D1-6F3A81FB4F9D}.Release|Win32.ActiveCfg = Release|Win32 - {2A9A25A7-739C-441E-A8D1-6F3A81FB4F9D}.Release|Win32.Build.0 = Release|Win32 - {D6DD993F-C0A0-4147-ADD7-D763FC1624B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {D6DD993F-C0A0-4147-ADD7-D763FC1624B5}.Debug|Win32.Build.0 = Debug|Win32 - {D6DD993F-C0A0-4147-ADD7-D763FC1624B5}.Release|Win32.ActiveCfg = Release|Win32 - {D6DD993F-C0A0-4147-ADD7-D763FC1624B5}.Release|Win32.Build.0 = Release|Win32 - {175733F5-16A1-4907-857B-6EB283D937B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {175733F5-16A1-4907-857B-6EB283D937B5}.Debug|Win32.Build.0 = Debug|Win32 - {175733F5-16A1-4907-857B-6EB283D937B5}.Release|Win32.ActiveCfg = Release|Win32 - {175733F5-16A1-4907-857B-6EB283D937B5}.Release|Win32.Build.0 = Release|Win32 - {E9B551E1-3EB2-4FE5-850B-CD1B35E3F617}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9B551E1-3EB2-4FE5-850B-CD1B35E3F617}.Debug|Win32.Build.0 = Debug|Win32 - {E9B551E1-3EB2-4FE5-850B-CD1B35E3F617}.Release|Win32.ActiveCfg = Release|Win32 - {E9B551E1-3EB2-4FE5-850B-CD1B35E3F617}.Release|Win32.Build.0 = Release|Win32 - {C4AA0584-9CF1-4511-9675-90B353270436}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4AA0584-9CF1-4511-9675-90B353270436}.Debug|Win32.Build.0 = Debug|Win32 - {C4AA0584-9CF1-4511-9675-90B353270436}.Release|Win32.ActiveCfg = Release|Win32 - {C4AA0584-9CF1-4511-9675-90B353270436}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj b/freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj deleted file mode 100644 index b5bef6c..0000000 --- a/freeglut/freeglut/progs/demos/shapes/shapesStatic_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj b/freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj deleted file mode 100644 index ee99738..0000000 --- a/freeglut/freeglut/progs/demos/shapes/shapes_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.vcproj b/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.vcproj deleted file mode 100644 index 3866e0e..0000000 --- a/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3Static_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj b/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj deleted file mode 100644 index e3702a1..0000000 --- a/freeglut/freeglut/progs/demos/smooth_opengl3/smooth_opengl3_vs2008.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -