summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio15Generator.cxx
diff options
context:
space:
mode:
authorIyyappa Murugandi <iyyappam@microsoft.com>2016-12-15 02:53:30 (GMT)
committerBrad King <brad.king@kitware.com>2016-12-16 14:58:31 (GMT)
commitefdfc26e14b5a4d8b52a1021ffe85418cdfc802f (patch)
treea093f6a45a0cd0d182c5eecb176da0ed5331358b /Source/cmGlobalVisualStudio15Generator.cxx
parentad5b702c0914e0912693b9e5a84d9fe4bb53d720 (diff)
downloadCMake-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/cmGlobalVisualStudio15Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio15Generator.cxx6
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;