summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio15Generator.cxx
diff options
context:
space:
mode:
authorIan Hojnicki <nullref@live.com>2017-06-22 21:37:05 (GMT)
committerBrad King <brad.king@kitware.com>2017-06-28 12:55:40 (GMT)
commit17a397c22a7c7f14aa001f85f64c36428c71414a (patch)
tree5cf4f53d78b616f872109e42e070651994e2ff68 /Source/cmGlobalVisualStudio15Generator.cxx
parent372de3f8039f69b3a2edcf7120083ec4097f8bd3 (diff)
downloadCMake-17a397c22a7c7f14aa001f85f64c36428c71414a.zip
CMake-17a397c22a7c7f14aa001f85f64c36428c71414a.tar.gz
CMake-17a397c22a7c7f14aa001f85f64c36428c71414a.tar.bz2
VS: Split link flag table between v140 and v141 toolsets
Diffstat (limited to 'Source/cmGlobalVisualStudio15Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio15Generator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio15Generator.cxx b/Source/cmGlobalVisualStudio15Generator.cxx
index da2bf8c..ce1ba00 100644
--- a/Source/cmGlobalVisualStudio15Generator.cxx
+++ b/Source/cmGlobalVisualStudio15Generator.cxx
@@ -8,6 +8,7 @@
#include "cmMakefile.h"
#include "cmVS141CLFlagTable.h"
#include "cmVS141CSharpFlagTable.h"
+#include "cmVS141LinkFlagTable.h"
#include "cmVSSetupHelper.h"
static const char vs15generatorName[] = "Visual Studio 15 2017";
@@ -85,6 +86,7 @@ cmGlobalVisualStudio15Generator::cmGlobalVisualStudio15Generator(
this->DefaultPlatformToolset = "v141";
this->DefaultClFlagTable = cmVS141CLFlagTable;
this->DefaultCSharpFlagTable = cmVS141CSharpFlagTable;
+ this->DefaultLinkFlagTable = cmVS141LinkFlagTable;
this->Version = VS15;
}