Skip to content
Snippets Groups Projects
Commit 4523da9a authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'vs-toolset-version'


a60141fe VS: Add special case for '-T version=14.29.16.10' under VS 16.10

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6169
parents 1143213e a60141fe
No related branches found
No related tags found
No related merge requests found
......@@ -504,6 +504,9 @@ cmGlobalVisualStudioVersionedGenerator::FindAuxToolset(
if (version == "14.28.16.9" && vcToolsetVersion == "14.28.29910") {
return AuxToolset::Default;
}
if (version == "14.29.16.10" && vcToolsetVersion == "14.29.30037") {
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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment