diff options
author | Brad King <brad.king@kitware.com> | 2019-01-08 19:11:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-08 19:13:33 (GMT) |
commit | 68bc9fcbb9a0d0a91d9c7b592c79b04d0f03fabc (patch) | |
tree | e17688823d066f672b92fdc464ef01eb072be89f | |
parent | 9bbfbd54ba04e07b0bf2eb8bb1056bca53d639c5 (diff) | |
parent | d44f81c2173d56cba662bc414f7cd2dc030b74fe (diff) | |
download | CMake-68bc9fcbb9a0d0a91d9c7b592c79b04d0f03fabc.zip CMake-68bc9fcbb9a0d0a91d9c7b592c79b04d0f03fabc.tar.gz CMake-68bc9fcbb9a0d0a91d9c7b592c79b04d0f03fabc.tar.bz2 |
Merge branch 'vs2017-skip-2019' into release-3.13
Merge-request: !2775
-rw-r--r-- | Source/cmVSSetupHelper.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmVSSetupHelper.cxx b/Source/cmVSSetupHelper.cxx index 22fe007..19c96b3 100644 --- a/Source/cmVSSetupHelper.cxx +++ b/Source/cmVSSetupHelper.cxx @@ -295,6 +295,9 @@ bool cmVSSetupAPIHelper::EnumerateAndChooseVSInstance() return false; } + // FIXME: Add a way for caller to specify other versions. + std::wstring wantVersion = std::to_wstring(15) + L'.'; + SmartCOMPtr<ISetupInstance> instance; while (SUCCEEDED(enumInstances->Next(1, &instance, NULL)) && instance) { SmartCOMPtr<ISetupInstance2> instance2 = NULL; @@ -310,6 +313,12 @@ bool cmVSSetupAPIHelper::EnumerateAndChooseVSInstance() instance = instance2 = NULL; if (isInstalled) { + // We are looking for a specific major version. + if (instanceInfo.Version.size() < wantVersion.size() || + instanceInfo.Version.substr(0, wantVersion.size()) != wantVersion) { + continue; + } + if (!this->SpecifiedVSInstallLocation.empty()) { // We are looking for a specific instance. std::string currentVSLocation = instanceInfo.GetInstallLocation(); |