diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-03-16 15:20:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-03-20 18:10:04 (GMT) |
commit | 5697c6ae03a32205ccbff7885c61a6f925513999 (patch) | |
tree | 2acedbe8b1fac1c0f7a99af7330e190e9cb393f4 /Source/cmVisualStudioGeneratorOptions.h | |
parent | b3e668ea25d35a04adc41e17cfb4c8ab7a97a7d9 (diff) | |
download | CMake-5697c6ae03a32205ccbff7885c61a6f925513999.zip CMake-5697c6ae03a32205ccbff7885c61a6f925513999.tar.gz CMake-5697c6ae03a32205ccbff7885c61a6f925513999.tar.bz2 |
cmVisualStudioGeneratorOptions: Factor out an OutputFlag helper
Diffstat (limited to 'Source/cmVisualStudioGeneratorOptions.h')
-rw-r--r-- | Source/cmVisualStudioGeneratorOptions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.h b/Source/cmVisualStudioGeneratorOptions.h index 5c3e415..517760a 100644 --- a/Source/cmVisualStudioGeneratorOptions.h +++ b/Source/cmVisualStudioGeneratorOptions.h @@ -94,6 +94,10 @@ public: void SetConfiguration(const std::string& config); private: + void OutputFlag(std::ostream& fout, const char* indent, const char* tag, + const std::string& content); + +private: cmLocalVisualStudioGenerator* LocalGenerator; cmGlobalVisualStudioGenerator::VSVersion Version; |