diff options
author | Brad King <brad.king@kitware.com> | 2014-07-29 12:52:24 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-07-29 12:52:24 (GMT) |
commit | 38065563b6fb0093004d0c89b5de0f82a76b5a31 (patch) | |
tree | 96b92f00a70fbb541edfa1edfb963f61312e9f75 /Source/cmGlobalVisualStudio10Generator.h | |
parent | 104a4cb783b7381452c3eff8bdefe8c985079f2e (diff) | |
parent | e58f97531aa6e2a124540f38b5acd18fd989cf3b (diff) | |
download | CMake-38065563b6fb0093004d0c89b5de0f82a76b5a31.zip CMake-38065563b6fb0093004d0c89b5de0f82a76b5a31.tar.gz CMake-38065563b6fb0093004d0c89b5de0f82a76b5a31.tar.bz2 |
Merge topic 'vs10-system-hook'
e58f9753 VS: Add a hook to adapt to SystemName and SystemVersion
d0dd28fa VS: Save system name and version in global generator members
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h index 9f154e9..4d7ff80 100644 --- a/Source/cmGlobalVisualStudio10Generator.h +++ b/Source/cmGlobalVisualStudio10Generator.h @@ -92,6 +92,7 @@ public: protected: virtual void Generate(); + virtual bool InitializeSystem(cmMakefile* mf); virtual const char* GetIDEVersion() { return "10.0"; } @@ -99,6 +100,8 @@ protected: std::string GeneratorToolset; std::string DefaultPlatformToolset; + std::string SystemName; + std::string SystemVersion; bool ExpressEdition; bool MasmEnabled; |