Put static library stuff into its own solution. This way, a rather uncommon way doesn't clutter up our normal solution, which is DLL-based.
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@823 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
6abe740e61
commit
ad2f613a10
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -40,6 +40,7 @@ freeglut/freeglut/freeglut_static.tgt svn_keywords=Author+Date+Id+Revision
|
|||||||
freeglut/freeglut/freeglut_static_vs2008.vcproj -text
|
freeglut/freeglut/freeglut_static_vs2008.vcproj -text
|
||||||
freeglut/freeglut/freeglut_vs2008.sln -text
|
freeglut/freeglut/freeglut_vs2008.sln -text
|
||||||
freeglut/freeglut/freeglut_vs2008.vcproj -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/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.h svn_keywords=Author+Date+Id+Revision
|
||||||
freeglut/freeglut/include/GL/freeglut_ext.h svn_keywords=Author+Date+Id+Revision
|
freeglut/freeglut/include/GL/freeglut_ext.h svn_keywords=Author+Date+Id+Revision
|
||||||
|
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,8 +1,12 @@
|
|||||||
|
freeglut/freeglut/*.ncb
|
||||||
|
freeglut/freeglut/*.suo
|
||||||
freeglut/freeglut/Debug
|
freeglut/freeglut/Debug
|
||||||
|
freeglut/freeglut/DebugStatic
|
||||||
freeglut/freeglut/INSTALL
|
freeglut/freeglut/INSTALL
|
||||||
freeglut/freeglut/Makefile
|
freeglut/freeglut/Makefile
|
||||||
freeglut/freeglut/Makefile.in
|
freeglut/freeglut/Makefile.in
|
||||||
freeglut/freeglut/Release
|
freeglut/freeglut/Release
|
||||||
|
freeglut/freeglut/ReleaseStatic
|
||||||
freeglut/freeglut/aclocal.m4
|
freeglut/freeglut/aclocal.m4
|
||||||
freeglut/freeglut/autom4te.cache
|
freeglut/freeglut/autom4te.cache
|
||||||
freeglut/freeglut/autoscan.log
|
freeglut/freeglut/autoscan.log
|
||||||
@ -23,8 +27,6 @@ freeglut/freeglut/doc/Makefile
|
|||||||
freeglut/freeglut/doc/Makefile.in
|
freeglut/freeglut/doc/Makefile.in
|
||||||
freeglut/freeglut/freeglut-*.tar.gz
|
freeglut/freeglut/freeglut-*.tar.gz
|
||||||
freeglut/freeglut/freeglut_static_vs2008.vcproj.*.user
|
freeglut/freeglut/freeglut_static_vs2008.vcproj.*.user
|
||||||
freeglut/freeglut/freeglut_vs2008.ncb
|
|
||||||
freeglut/freeglut/freeglut_vs2008.suo
|
|
||||||
freeglut/freeglut/freeglut_vs2008.vcproj.*.user
|
freeglut/freeglut/freeglut_vs2008.vcproj.*.user
|
||||||
freeglut/freeglut/include/GL/Makefile
|
freeglut/freeglut/include/GL/Makefile
|
||||||
freeglut/freeglut/include/GL/Makefile.in
|
freeglut/freeglut/include/GL/Makefile.in
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
# Visual Studio 2008
|
# Visual C++ Express 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut_vs2008.vcproj", "{1AE4E979-0D35-4747-BF8E-DD60358F49DB}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut", "freeglut_vs2008.vcproj", "{1AE4E979-0D35-4747-BF8E-DD60358F49DB}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freeglut_static", "freeglut_static_vs2008.vcproj", "{71AF75A0-52B6-4C1B-8E56-CB31C6741A18}"
|
|
||||||
EndProject
|
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
@ -15,10 +13,6 @@ Global
|
|||||||
{1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Debug|Win32.Build.0 = 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.ActiveCfg = Release|Win32
|
||||||
{1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.Build.0 = Release|Win32
|
{1AE4E979-0D35-4747-BF8E-DD60358F49DB}.Release|Win32.Build.0 = Release|Win32
|
||||||
{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
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
20
freeglut/freeglut/freeglut_vs2008_static.sln
Normal file
20
freeglut/freeglut/freeglut_vs2008_static.sln
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
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
|
Reference in New Issue
Block a user