summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-05-30 14:18:50 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-05-30 14:19:21 (GMT)
commit958191a95c9d06c0efa9240d0e98ada429e9bc3f (patch)
tree329c70681bd6591e964ef0bbcb1380d8ad8c2126 /Source/cmGlobalVisualStudio10Generator.h
parentfdb9d1ba042fb517da0bf03a3781dd7a3b506f69 (diff)
parent5f1316841944198037d6463d3ddd12efcfae45b3 (diff)
downloadCMake-958191a95c9d06c0efa9240d0e98ada429e9bc3f.zip
CMake-958191a95c9d06c0efa9240d0e98ada429e9bc3f.tar.gz
CMake-958191a95c9d06c0efa9240d0e98ada429e9bc3f.tar.bz2
Merge topic 'vs-toolset-version'
5f13168419 VS: Add option to select the version of the toolset used by VS 2017 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Francisco Facioni <fran6co@gmail.com> Merge-request: !2093
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h
index 098c8d4..148f85f 100644
--- a/Source/cmGlobalVisualStudio10Generator.h
+++ b/Source/cmGlobalVisualStudio10Generator.h
@@ -52,6 +52,10 @@ public:
const char* GetPlatformToolset() const;
std::string const& GetPlatformToolsetString() const;
+ /** The toolset version. */
+ const char* GetPlatformToolsetVersion() const;
+ std::string const& GetPlatformToolsetVersionString() const;
+
/** The toolset host architecture name (e.g. x64 for 64-bit host tools). */
const char* GetPlatformToolsetHostArchitecture() const;
@@ -99,6 +103,8 @@ public:
std::string Encoding() override;
virtual const char* GetToolsVersion() { return "4.0"; }
+ virtual std::string GetAuxiliaryToolset() const;
+
bool FindMakeProgram(cmMakefile* mf) override;
static std::string GetInstalledNsightTegraVersion();
@@ -133,6 +139,7 @@ protected:
std::string const& GetMSBuildCommand();
std::string GeneratorToolset;
+ std::string GeneratorToolsetVersion;
std::string GeneratorToolsetHostArchitecture;
std::string GeneratorToolsetCuda;
std::string DefaultPlatformToolset;