summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-08-24 13:57:53 (GMT)
committerKitware Robot <kwrobot@kitware.com>2021-08-24 13:58:09 (GMT)
commite9003cbcfef90c661a22f79dfaa33512d12b87a6 (patch)
tree5425f5b5fbd337427ff4ee5e165d88c67ef92356 /Source
parent2a4d1c80480e4e502fb9ca14e8a4c6c6a1291ff0 (diff)
parent25c5ebba7edc6b871a29617ab2d7a459d81dfd58 (diff)
downloadCMake-e9003cbcfef90c661a22f79dfaa33512d12b87a6.zip
CMake-e9003cbcfef90c661a22f79dfaa33512d12b87a6.tar.gz
CMake-e9003cbcfef90c661a22f79dfaa33512d12b87a6.tar.bz2
Merge topic 'vs-toolset-version'
25c5ebba7e VS: Add special case for '-T version=14.29.16.11' under VS 16.11 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6469
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalVisualStudioVersionedGenerator.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.cxx b/Source/cmGlobalVisualStudioVersionedGenerator.cxx
index 79c06d6..d0ad53e 100644
--- a/Source/cmGlobalVisualStudioVersionedGenerator.cxx
+++ b/Source/cmGlobalVisualStudioVersionedGenerator.cxx
@@ -618,6 +618,9 @@ cmGlobalVisualStudioVersionedGenerator::FindAuxToolset(
if (version == "14.29.16.10" && vcToolsetVersion == "14.29.30037") {
return AuxToolset::Default;
}
+ if (version == "14.29.16.11" && vcToolsetVersion == "14.29.30133") {
+ return AuxToolset::Default;
+ }
// The first two components of the default toolset version typically
// match the name used by later VS versions for the SxS props files.