diff options
author | Brad King <brad.king@kitware.com> | 2016-07-13 13:35:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-13 13:35:39 (GMT) |
commit | 36fc3a53728e1a6774cdd6dee57fac063ff32b9c (patch) | |
tree | 6c07de214ea436f300f7ada59582422c420ab19d /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 9d81f1b3aaa82d12a3a87067572b3ff5e2b9c4d2 (diff) | |
download | CMake-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.cxx | 3 |
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 = |