From d47bda00b2e46b3fd6f9e050f3f21b5337ac244b Mon Sep 17 00:00:00 2001 From: Iyyappa Murugandi Date: Wed, 14 Dec 2016 18:53:30 -0800 Subject: VS: Fix VS 2017 Windows Store toolset selection VS 2017 uses the `v141` toolset, not `v140`. --- Source/cmGlobalVisualStudio15Generator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmGlobalVisualStudio15Generator.cxx b/Source/cmGlobalVisualStudio15Generator.cxx index fe4b91c..4299081 100644 --- a/Source/cmGlobalVisualStudio15Generator.cxx +++ b/Source/cmGlobalVisualStudio15Generator.cxx @@ -114,7 +114,7 @@ bool cmGlobalVisualStudio15Generator::SelectWindowsStoreToolset( if (cmHasLiteralPrefix(this->SystemVersion, "10.0")) { if (this->IsWindowsStoreToolsetInstalled() && this->IsWindowsDesktopToolsetInstalled()) { - toolset = "v140"; // VS 15 uses v140 toolset + toolset = "v141"; // VS 15 uses v141 toolset return true; } else { return false; -- cgit v0.12