From 28fbb2e4894f5d855392300ac2115e237c391874 Mon Sep 17 00:00:00 2001 From: fayjf Date: Sun, 23 Jan 2011 03:47:05 +0000 Subject: [PATCH] Adding Visual Studio 2010 support and moving Visual Studio 2008 support from two separate directories into a single "VisualStudio" directory. Use of the project files in the "VisualStudio2008" or "VisualStudio2008Static" directories is now DEPRECATED. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@880 7f0cb862-5218-0410-a997-914c9d46530a --- .gitattributes | 26 + freeglut/freeglut/README.win32 | 4 + .../2008/CallbackMaker/CallbackMaker.vcproj | 346 +++++++++++++ .../2008/Fractals/Fractals.vcproj | 346 +++++++++++++ .../Fractals_random/Fractals_random.vcproj | 346 +++++++++++++ .../VisualStudio/2008/Lorenz/Lorenz.vcproj | 346 +++++++++++++ .../freeglut/VisualStudio/2008/One/One.vcproj | 346 +++++++++++++ .../freeglut/VisualStudio/2008/freeglut.sln | 117 +++++ .../VisualStudio/2008/freeglut.vcproj | 459 ++++++++++++++++++ .../VisualStudio/2008/shapes/shapes.vcproj | 346 +++++++++++++ .../2008/smooth_opengl3/smooth_opengl3.vcproj | 346 +++++++++++++ .../2010/CallbackMaker/CallbackMaker.vcxproj | 172 +++++++ .../CallbackMaker.vcxproj.filters | 22 + .../2010/Fractals/Fractals.vcxproj | 172 +++++++ .../2010/Fractals/Fractals.vcxproj.filters | 22 + .../Fractals_random/Fractals_random.vcxproj | 172 +++++++ .../Fractals_random.vcxproj.filters | 22 + .../VisualStudio/2010/Lorenz/Lorenz.vcxproj | 172 +++++++ .../2010/Lorenz/Lorenz.vcxproj.filters | 22 + .../VisualStudio/2010/One/One.vcxproj | 172 +++++++ .../VisualStudio/2010/One/One.vcxproj.filters | 22 + .../freeglut/VisualStudio/2010/freeglut.sln | 96 ++++ .../VisualStudio/2010/freeglut.vcxproj | 241 +++++++++ .../2010/freeglut.vcxproj.filters | 121 +++++ .../VisualStudio/2010/shapes/shapes.vcxproj | 172 +++++++ .../2010/shapes/shapes.vcxproj.filters | 22 + .../smooth_opengl3/smooth_opengl3.vcxproj | 172 +++++++ .../smooth_opengl3.vcxproj.filters | 22 + 28 files changed, 4844 insertions(+) create mode 100644 freeglut/freeglut/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/Fractals/Fractals.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/Fractals_random/Fractals_random.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/Lorenz/Lorenz.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/One/One.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/freeglut.sln create mode 100644 freeglut/freeglut/VisualStudio/2008/freeglut.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/shapes/shapes.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj create mode 100644 freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/One/One.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/One/One.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/freeglut.sln create mode 100644 freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj.filters create mode 100644 freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj create mode 100644 freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filters diff --git a/.gitattributes b/.gitattributes index d432a5a..86f4af5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -13,6 +13,32 @@ freeglut/freeglut/README.cygwin_mingw -text freeglut/freeglut/README.mac -text freeglut/freeglut/README.win32 svn_keywords=Author+Date+Id+Revision freeglut/freeglut/TODO svn_keywords=Author+Date+Id+Revision +freeglut/freeglut/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj -text +freeglut/freeglut/VisualStudio/2008/Fractals/Fractals.vcproj -text +freeglut/freeglut/VisualStudio/2008/Fractals_random/Fractals_random.vcproj -text +freeglut/freeglut/VisualStudio/2008/Lorenz/Lorenz.vcproj -text +freeglut/freeglut/VisualStudio/2008/One/One.vcproj -text +freeglut/freeglut/VisualStudio/2008/freeglut.sln -text +freeglut/freeglut/VisualStudio/2008/freeglut.vcproj -text +freeglut/freeglut/VisualStudio/2008/shapes/shapes.vcproj -text +freeglut/freeglut/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj -text +freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj -text +freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj -text +freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj -text +freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj -text +freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/One/One.vcxproj -text +freeglut/freeglut/VisualStudio/2010/One/One.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/freeglut.sln -text +freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj -text +freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj -text +freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj.filters -text +freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj -text +freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filters -text freeglut/freeglut/VisualStudio2008/CallbackMaker/CallbackMaker.vcproj -text freeglut/freeglut/VisualStudio2008/Fractals/Fractals.vcproj -text freeglut/freeglut/VisualStudio2008/Fractals_random/Fractals_random.vcproj -text diff --git a/freeglut/freeglut/README.win32 b/freeglut/freeglut/README.win32 index dcde418..3fb4d82 100755 --- a/freeglut/freeglut/README.win32 +++ b/freeglut/freeglut/README.win32 @@ -58,6 +58,10 @@ you will need to copy various files to various locations. "C:\Windows\System32" and will probably already have the files "opengl32.dll" and "glu32.dll". +The "VisualStudio2008" and "VisualStudio2008Static" directories are DEPRECATED +as of January 22, 2011. Users are directed to the "VisualStudio\2008" directory +instead. + Building and Installing the Libraries with Open Watcom ====================================================== diff --git a/freeglut/freeglut/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj b/freeglut/freeglut/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj new file mode 100644 index 0000000..52f091b --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/Fractals/Fractals.vcproj b/freeglut/freeglut/VisualStudio/2008/Fractals/Fractals.vcproj new file mode 100644 index 0000000..65a71fd --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/Fractals/Fractals.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/Fractals_random/Fractals_random.vcproj b/freeglut/freeglut/VisualStudio/2008/Fractals_random/Fractals_random.vcproj new file mode 100644 index 0000000..6a43105 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/Fractals_random/Fractals_random.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/Lorenz/Lorenz.vcproj b/freeglut/freeglut/VisualStudio/2008/Lorenz/Lorenz.vcproj new file mode 100644 index 0000000..c478734 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/Lorenz/Lorenz.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/One/One.vcproj b/freeglut/freeglut/VisualStudio/2008/One/One.vcproj new file mode 100644 index 0000000..7563bbb --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/One/One.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/freeglut.sln b/freeglut/freeglut/VisualStudio/2008/freeglut.sln new file mode 100644 index 0000000..1a43674 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/freeglut.sln @@ -0,0 +1,117 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 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_Static|Win32 = Debug_Static|Win32 + Debug|Win32 = Debug|Win32 + Release_Static|Win32 = Release_Static|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug_Static|Win32.ActiveCfg = Debug_Static|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug_Static|Win32.Build.0 = Debug_Static|Win32 + {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_Static|Win32.ActiveCfg = Release_Static|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Release_Static|Win32.Build.0 = Release_Static|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/VisualStudio/2008/freeglut.vcproj b/freeglut/freeglut/VisualStudio/2008/freeglut.vcproj new file mode 100644 index 0000000..c5a01cc --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/freeglut.vcproj @@ -0,0 +1,459 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/shapes/shapes.vcproj b/freeglut/freeglut/VisualStudio/2008/shapes/shapes.vcproj new file mode 100644 index 0000000..592ba7b --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/shapes/shapes.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj b/freeglut/freeglut/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj new file mode 100644 index 0000000..3fd4d0b --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj b/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj new file mode 100644 index 0000000..276a310 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {6383110F-E0DA-4604-A510-63A46FCB844B} + CallbackMaker + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filters new file mode 100644 index 0000000..406d1b5 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj b/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj new file mode 100644 index 0000000..e41e6d4 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2} + Fractals + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj.filters new file mode 100644 index 0000000..6afa389 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Fractals/Fractals.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj b/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj new file mode 100644 index 0000000..65887fa --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {0D61E7A8-BF10-4C13-B5F4-971851C89E23} + Fractals_random + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.filters new file mode 100644 index 0000000..02aa676 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj b/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj new file mode 100644 index 0000000..41245cb --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {6805E1E3-F437-4621-AA68-0778BDEE51EF} + Lorenz + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters new file mode 100644 index 0000000..d780dc2 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj b/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj new file mode 100644 index 0000000..0f5da57 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036} + One + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj.filters new file mode 100644 index 0000000..0b36cb8 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/One/One.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/freeglut.sln b/freeglut/freeglut/VisualStudio/2010/freeglut.sln new file mode 100644 index 0000000..700d039 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/freeglut.sln @@ -0,0 +1,96 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut.vcxproj", "{1AE4E979-0D35-4747-BF8E-DD60358F49DB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackMaker", "CallbackMaker\CallbackMaker.vcxproj", "{6383110F-E0DA-4604-A510-63A46FCB844B}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals", "Fractals\Fractals.vcxproj", "{289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fractals_random", "Fractals_random\Fractals_random.vcxproj", "{0D61E7A8-BF10-4C13-B5F4-971851C89E23}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Lorenz", "Lorenz\Lorenz.vcxproj", "{6805E1E3-F437-4621-AA68-0778BDEE51EF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "One", "One\One.vcxproj", "{6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shapes", "shapes\shapes.vcxproj", "{9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "smooth_opengl3", "smooth_opengl3\smooth_opengl3.vcxproj", "{BEA6A000-DB05-4410-9863-42AAAD57AA1E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug_Static|Win32 = Debug_Static|Win32 + Debug|Win32 = Debug|Win32 + Release_Static|Win32 = Release_Static|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug_Static|Win32.ActiveCfg = Debug_Static|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug_Static|Win32.Build.0 = Debug_Static|Win32 + {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_Static|Win32.ActiveCfg = Release_Static|Win32 + {1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6383110F-E0DA-4604-A510-63A46FCB844B}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {289436C6-B6B4-40AD-8D0E-8B3BFB7075E2}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {0D61E7A8-BF10-4C13-B5F4-971851C89E23}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6805E1E3-F437-4621-AA68-0778BDEE51EF}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {6B5B08E3-B24F-4A22-83AC-EF07A9B6C036}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18}.Release_Static|Win32.Build.0 = Release_Static|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_Static|Win32.ActiveCfg = Debug_Static|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Debug_Static|Win32.Build.0 = Debug_Static|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_Static|Win32.ActiveCfg = Release_Static|Win32 + {BEA6A000-DB05-4410-9863-42AAAD57AA1E}.Release_Static|Win32.Build.0 = Release_Static|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/VisualStudio/2010/freeglut.vcxproj b/freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj new file mode 100644 index 0000000..3cc21a8 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj @@ -0,0 +1,241 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {1AE4E979-0D35-4747-BF8E-DD60358F49DB} + freeglut + + + + StaticLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + true + + + StaticLibrary + false + MultiByte + + + DynamicLibrary + false + MultiByte + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + build\$(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + build\$(Configuration)\ + $(SolutionDir)build\$(Configuration)\ + build\$(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + build\$(Configuration)\ + $(ProjectName)_static + $(ProjectName)_static + + + + Disabled + ..\..\include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_WINDOWS;_USRDLL;FREEGLUT_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Level3 + EditAndContinue + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + $(OutDir)$(ProjectName).dll + ..\..\src\freeglutdll.def + true + false + + + $(OutDir)$(ProjectName).lib + MachineX86 + + + + + Disabled + ..\..\include;%(AdditionalIncludeDirectories) + _DEBUG;FREEGLUT_STATIC;WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + true + Level3 + EditAndContinue + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + $(OutDir)$(TargetName).lib + MachineX86 + + + + + MaxSpeed + true + ..\..\include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_WINDOWS;_USRDLL;FREEGLUT_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + $(OutDir)$(ProjectName).dll + ..\..\src\freeglutdll.def + false + + + $(OutDir)$(ProjectName).lib + MachineX86 + + + + + MaxSpeed + OnlyExplicitInline + ..\..\include;%(AdditionalIncludeDirectories) + NDEBUG;FREEGLUT_STATIC;WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + MultiThreaded + true + Level3 + true + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + $(OutDir)$(TargetName).lib + MachineX86 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj.filters new file mode 100644 index 0000000..cf558f3 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/freeglut.vcxproj.filters @@ -0,0 +1,121 @@ + + + + + {6b55b52c-3b87-42a7-8679-66a91136f452} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {7ae758d5-8151-47b8-a348-d1d819d812ca} + h;hpp;hxx;hm;inl + + + {348c3d14-bb7e-481f-836f-8a31a3702733} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj b/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj new file mode 100644 index 0000000..36a5a27 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {9CF59EE9-AEE3-46FB-8026-DF1DDA75DF18} + shapes + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj.filters new file mode 100644 index 0000000..7febe7a --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/shapes/shapes.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj b/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj new file mode 100644 index 0000000..38a6c04 --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug_Static + Win32 + + + Debug + Win32 + + + Release_Static + Win32 + + + Release + Win32 + + + + {BEA6A000-DB05-4410-9863-42AAAD57AA1E} + smooth_opengl3 + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + true + + + Application + Unicode + + + Application + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + $(SolutionDir)build\$(Configuration)\ + $(Configuration)\ + false + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + Disabled + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebug + + + Level3 + EditAndContinue + + + ..\..\..\lib\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + MaxSpeed + true + ..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;FREEGLUT_STATIC;%(PreprocessorDefinitions) + MultiThreaded + true + + + Level3 + ProgramDatabase + + + ..\..\..\lib\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + + + + + + {1ae4e979-0d35-4747-bf8e-dd60358f49db} + false + + + + + + \ No newline at end of file diff --git a/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filters b/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filters new file mode 100644 index 0000000..ee17dcc --- /dev/null +++ b/freeglut/freeglut/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file