diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-15 14:13:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-15 14:13:55 +0200 |
commit | 770c24812b6823d48bbea2f03942221d1aed964c (patch) | |
tree | d19588e4d7a06955dfca2275d69201a5f1a450bd /boost/mysql | |
parent | 419d6b8fd02a149dd9f05b3ffbf4a7676e6e8b34 (diff) |
Use single template set of templates for .sln files
Diffstat (limited to 'boost/mysql')
-rw-r--r-- | boost/mysql/boost-mysql-vc10.sln | 15 | ||||
-rw-r--r-- | boost/mysql/boost-mysql-vc11.sln | 15 | ||||
-rw-r--r-- | boost/mysql/boost-mysql-vc12.sln | 17 | ||||
-rw-r--r-- | boost/mysql/boost-mysql-vc8.sln | 15 | ||||
-rw-r--r-- | boost/mysql/boost-mysql-vc9.sln | 15 | ||||
-rw-r--r-- | boost/mysql/makefile | 10 |
6 files changed, 5 insertions, 82 deletions
diff --git a/boost/mysql/boost-mysql-vc10.sln b/boost/mysql/boost-mysql-vc10.sln deleted file mode 100644 index 9a5dc32..0000000 --- a/boost/mysql/boost-mysql-vc10.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/boost/mysql/boost-mysql-vc11.sln b/boost/mysql/boost-mysql-vc11.sln deleted file mode 100644 index 436eeea..0000000 --- a/boost/mysql/boost-mysql-vc11.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/boost/mysql/boost-mysql-vc12.sln b/boost/mysql/boost-mysql-vc12.sln deleted file mode 100644 index 446d701..0000000 --- a/boost/mysql/boost-mysql-vc12.sln +++ /dev/null @@ -1,17 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/boost/mysql/boost-mysql-vc8.sln b/boost/mysql/boost-mysql-vc8.sln deleted file mode 100644 index f38bad2..0000000 --- a/boost/mysql/boost-mysql-vc8.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/boost/mysql/boost-mysql-vc9.sln b/boost/mysql/boost-mysql-vc9.sln deleted file mode 100644 index 2ec9432..0000000 --- a/boost/mysql/boost-mysql-vc9.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/boost/mysql/makefile b/boost/mysql/makefile index 57f65f5..c8893fe 100644 --- a/boost/mysql/makefile +++ b/boost/mysql/makefile @@ -16,11 +16,11 @@ $(dist): export extra_dist := $(name)-vc8.sln $(name)-vc9.sln \ $(name)-vc10.sln $(name)-vc11.sln $(name)-vc12.sln test.bat $(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests))) $(call meta-automake) - $(call meta-vc8sln,$(name)-vc8.sln) - $(call meta-vc9sln,$(name)-vc9.sln) - $(call meta-vc10sln,$(name)-vc10.sln) - $(call meta-vc11sln,$(name)-vc11.sln) - $(call meta-vc12sln,$(name)-vc12.sln) + $(call meta-vc8sln1,$(name)) + $(call meta-vc9sln1,$(name)) + $(call meta-vc10sln1,$(name)) + $(call meta-vc11sln1,$(name)) + $(call meta-vc12sln1,$(name)) $(call meta-vctest,$(name)-vc10.sln,test.bat) $(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests))) |