diff options
author | Brad King <brad.king@kitware.com> | 2016-10-06 20:43:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-06 20:46:53 (GMT) |
commit | 02b7d278c8cf9ec3012289fcbc673b908b920c89 (patch) | |
tree | 69beedf003aea69be1ac7c8a8f50e805fa165438 | |
parent | 1dc252ecf4d0946196133734540ebe8e90f312d3 (diff) | |
download | CMake-02b7d278c8cf9ec3012289fcbc673b908b920c89.zip CMake-02b7d278c8cf9ec3012289fcbc673b908b920c89.tar.gz CMake-02b7d278c8cf9ec3012289fcbc673b908b920c89.tar.bz2 |
VS: Update VS 15 generator for Preview 5
The `PlatformToolset` is now `v141` instead of `v140`.
Closes: #16347
-rw-r--r-- | Help/release/3.7.rst | 2 | ||||
-rw-r--r-- | Source/cmGlobalVisualStudio15Generator.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Help/release/3.7.rst b/Help/release/3.7.rst index f02b62d..d8141ca 100644 --- a/Help/release/3.7.rst +++ b/Help/release/3.7.rst @@ -32,7 +32,7 @@ Generators with :ref:`Makefile Generators`. * The :generator:`Visual Studio 15` generator was added. This is - experimental and based on Preview 4 because this version of VS + experimental and based on Preview 5 because this version of VS has not been released. * :ref:`Visual Studio Generators` for VS 2010 and above learned to diff --git a/Source/cmGlobalVisualStudio15Generator.cxx b/Source/cmGlobalVisualStudio15Generator.cxx index 4d62f2b..a833a5f 100644 --- a/Source/cmGlobalVisualStudio15Generator.cxx +++ b/Source/cmGlobalVisualStudio15Generator.cxx @@ -79,7 +79,7 @@ cmGlobalVisualStudio15Generator::cmGlobalVisualStudio15Generator( "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\15.0\\Setup\\VC;" "ProductDir", vc15Express, cmSystemTools::KeyWOW64_32); - this->DefaultPlatformToolset = "v140"; + this->DefaultPlatformToolset = "v141"; this->Version = VS15; } |