summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudio10TargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-07-13 13:35:39 (GMT)
committerBrad King <brad.king@kitware.com>2016-07-13 13:35:39 (GMT)
commit36fc3a53728e1a6774cdd6dee57fac063ff32b9c (patch)
tree6c07de214ea436f300f7ada59582422c420ab19d /Source/cmVisualStudio10TargetGenerator.cxx
parent9d81f1b3aaa82d12a3a87067572b3ff5e2b9c4d2 (diff)
downloadCMake-36fc3a53728e1a6774cdd6dee57fac063ff32b9c.zip
CMake-36fc3a53728e1a6774cdd6dee57fac063ff32b9c.tar.gz
CMake-36fc3a53728e1a6774cdd6dee57fac063ff32b9c.tar.bz2
VS: Fix VS 2015 .vcxproj debug setting for v90 toolset (#15986)
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index 3b1cddb..fb05976 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -2354,7 +2354,8 @@ bool cmVisualStudio10TargetGenerator::ComputeLinkOptions(
cmGlobalVisualStudio10Generator* gg =
static_cast<cmGlobalVisualStudio10Generator*>(this->GlobalGenerator);
const char* toolset = gg->GetPlatformToolset();
- if (toolset && (cmHasLiteralPrefix(toolset, "v100") ||
+ if (toolset && (cmHasLiteralPrefix(toolset, "v90") ||
+ cmHasLiteralPrefix(toolset, "v100") ||
cmHasLiteralPrefix(toolset, "v110") ||
cmHasLiteralPrefix(toolset, "v120"))) {
if (const char* debug =