summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-12 13:31:32 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-09-12 13:31:32 (GMT)
commit58e56607c12789b41a722e03576c090584da4bf6 (patch)
treed0b62b8a4b8c20a4fa60f2d2802a5e0258e70fab /Source/cmGlobalVisualStudio10Generator.cxx
parent71a70c0e6c9aac54d61107fe9f1f1bf7c211821b (diff)
parent861f1b3da65d3eda55e0e1f29d628aa3fb643f70 (diff)
downloadCMake-58e56607c12789b41a722e03576c090584da4bf6.zip
CMake-58e56607c12789b41a722e03576c090584da4bf6.tar.gz
CMake-58e56607c12789b41a722e03576c090584da4bf6.tar.bz2
Merge topic 'vs-default-v100'
861f1b3d VS: Do not default to missing v100 64-bit toolset on VS 2010 Express
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx
index 8bb43ee..ac9c8ef 100644
--- a/Source/cmGlobalVisualStudio10Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Generator.cxx
@@ -482,6 +482,10 @@ void cmGlobalVisualStudio10Generator::GenerateBuildCommand(
bool cmGlobalVisualStudio10Generator::Find64BitTools(cmMakefile* mf)
{
+ if (this->DefaultPlatformToolset == "v100") {
+ // The v100 64-bit toolset does not exist in the express edition.
+ this->DefaultPlatformToolset.clear();
+ }
if (this->GetPlatformToolset()) {
return true;
}