diff options
author | Brad King <brad.king@kitware.com> | 2014-06-10 14:13:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-17 17:37:55 (GMT) |
commit | 7a9909db86ec9bf7c40ad6c7a965701017c3849d (patch) | |
tree | 9feb6cb83098dc9c196282883e449a0de6baebfd /Source/cmVisualStudio10TargetGenerator.h | |
parent | e4510941a3cc5f2990d79242db791bf370bb07d3 (diff) | |
download | CMake-7a9909db86ec9bf7c40ad6c7a965701017c3849d.zip CMake-7a9909db86ec9bf7c40ad6c7a965701017c3849d.tar.gz CMake-7a9909db86ec9bf7c40ad6c7a965701017c3849d.tar.bz2 |
VS: Make MS-tool-specific options conditional
Make blocks adding MS-tool-specific options conditional on a
new "MSTools" boolean member of cmVisualStudio10TargetGenerator.
Hard-code the member to true for now to preserve existing behavior.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index 6bdb40a..6c92b57 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -120,6 +120,7 @@ private: std::string Platform; std::string GUID; std::string Name; + bool MSTools; cmGlobalVisualStudio10Generator* GlobalGenerator; cmGeneratedFileStream* BuildFileStream; cmLocalVisualStudio7Generator* LocalGenerator; |