aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/visualstudio.cpp
diff options
context:
space:
mode:
authorJoel Teichroeb2014-06-19 18:21:14 -0700
committerJoel Teichroeb2014-06-21 11:32:45 -0700
commitc43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21 (patch)
treeb83d98bb99df8ba672c1b4d15aa2f2f2fd73b1bc /devtools/create_project/visualstudio.cpp
parent8d020ba086f99d8150dc451e3fed36d24af6b4e0 (diff)
downloadscummvm-rg350-c43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21.tar.gz
scummvm-rg350-c43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21.tar.bz2
scummvm-rg350-c43ce9ecf3ed2542173b8c438a9e9e1c44bf1f21.zip
ALL: Remove support for MSVC8 and older
MSVC8 gives various compile error relating to templates that were changed back in 2008, leading me to belive that no one is using it, and that there is not point adding work arounds for a 9 year old compiler no one uses.
Diffstat (limited to 'devtools/create_project/visualstudio.cpp')
-rw-r--r--devtools/create_project/visualstudio.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/devtools/create_project/visualstudio.cpp b/devtools/create_project/visualstudio.cpp
index 84bc674f9a..b2ed58cb58 100644
--- a/devtools/create_project/visualstudio.cpp
+++ b/devtools/create_project/visualstudio.cpp
@@ -29,7 +29,7 @@
namespace CreateProjectTool {
//////////////////////////////////////////////////////////////////////////
-// Visual Studio Provider (Visual Studio 2005 & 2008)
+// Visual Studio Provider (Visual Studio 2008)
//////////////////////////////////////////////////////////////////////////
VisualStudioProvider::VisualStudioProvider(StringList &global_warnings, std::map<std::string, StringList> &project_warnings, const int version)
@@ -48,9 +48,6 @@ int VisualStudioProvider::getVisualStudioVersion() {
if (_version == 9)
return 2008;
- if (_version == 8)
- return 2005;
-
error("Unsupported version passed to getVisualStudioVersion");
}
@@ -70,8 +67,7 @@ void VisualStudioProvider::createProjectFile(const std::string &name, const std:
"\tRootNamespace=\"" << name << "\"\n"
"\tKeyword=\"Win32Proj\"\n";
- if (_version >= 9)
- project << "\tTargetFrameworkVersion=\"131072\"\n";
+ project << "\tTargetFrameworkVersion=\"131072\"\n";
project << "\t>\n"
"\t<Platforms>\n"