diff options
author | Iyyappa Murugandi <iyyappam@microsoft.com> | 2016-12-15 02:53:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-16 14:58:31 (GMT) |
commit | efdfc26e14b5a4d8b52a1021ffe85418cdfc802f (patch) | |
tree | a093f6a45a0cd0d182c5eecb176da0ed5331358b /Source | |
parent | ad5b702c0914e0912693b9e5a84d9fe4bb53d720 (diff) | |
download | CMake-efdfc26e14b5a4d8b52a1021ffe85418cdfc802f.zip CMake-efdfc26e14b5a4d8b52a1021ffe85418cdfc802f.tar.gz CMake-efdfc26e14b5a4d8b52a1021ffe85418cdfc802f.tar.bz2 |
VS: Drop check for VS 15 Express Edition
There is no such version of VS 2017.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalVisualStudio15Generator.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmGlobalVisualStudio15Generator.cxx b/Source/cmGlobalVisualStudio15Generator.cxx index 20d30bc..fe4b91c 100644 --- a/Source/cmGlobalVisualStudio15Generator.cxx +++ b/Source/cmGlobalVisualStudio15Generator.cxx @@ -80,11 +80,7 @@ cmGlobalVisualStudio15Generator::cmGlobalVisualStudio15Generator( cmake* cm, const std::string& name, const std::string& platformName) : cmGlobalVisualStudio14Generator(cm, name, platformName) { - std::string vc15Express; - this->ExpressEdition = cmSystemTools::ReadRegistryValue( - "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\15.0\\Setup\\VC;" - "ProductDir", - vc15Express, cmSystemTools::KeyWOW64_32); + this->ExpressEdition = false; this->DefaultPlatformToolset = "v141"; this->DefaultClFlagTable = cmVS141CLFlagTable; this->DefaultCSharpFlagTable = cmVS141CSharpFlagTable; |