diff options
author | Brad King <brad.king@kitware.com> | 2015-07-08 15:27:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-09 13:50:06 (GMT) |
commit | 9d41f6d87b28c46d8a6d52f2de91976819e6b4d0 (patch) | |
tree | d158bddb7291f864ef8c3d3dd5cc842f1479bc2b /Source/cmLocalCommonGenerator.h | |
parent | a4a2518dd47bd37f2204a0209c2eeb632d191d1e (diff) | |
download | CMake-9d41f6d87b28c46d8a6d52f2de91976819e6b4d0.zip CMake-9d41f6d87b28c46d8a6d52f2de91976819e6b4d0.tar.gz CMake-9d41f6d87b28c46d8a6d52f2de91976819e6b4d0.tar.bz2 |
cmLocalCommonGenerator: Adopt ConfigName member
De-duplicate the member from the local Makefile and Ninja generators.
Diffstat (limited to 'Source/cmLocalCommonGenerator.h')
-rw-r--r-- | Source/cmLocalCommonGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmLocalCommonGenerator.h b/Source/cmLocalCommonGenerator.h index c897e49..c18ec16 100644 --- a/Source/cmLocalCommonGenerator.h +++ b/Source/cmLocalCommonGenerator.h @@ -24,6 +24,12 @@ public: cmLocalGenerator* parent, cmState::Snapshot snapshot); ~cmLocalCommonGenerator(); + + std::string const& GetConfigName() { return this->ConfigName; } + +protected: + void SetConfigName(); + std::string ConfigName; }; #endif |