diff options
author | Brad King <brad.king@kitware.com> | 2015-07-08 15:21:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-09 13:50:05 (GMT) |
commit | a4a2518dd47bd37f2204a0209c2eeb632d191d1e (patch) | |
tree | 83ea2a07185e32c6f5ea973bec5fceaad5a2577e /Source/cmLocalUnixMakefileGenerator3.h | |
parent | e7dcdd1011719b031d580d9094ad1f8c4701ef38 (diff) | |
download | CMake-a4a2518dd47bd37f2204a0209c2eeb632d191d1e.zip CMake-a4a2518dd47bd37f2204a0209c2eeb632d191d1e.tar.gz CMake-a4a2518dd47bd37f2204a0209c2eeb632d191d1e.tar.bz2 |
cmLocalUnixMakefileGenerator3: Provide GetConfigName() accessor
Rename internal member from ConfigurationName to ConfigName to
match the ninja generator.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 70d59de..ed77a5f 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -46,6 +46,7 @@ public: */ virtual void Generate(); + std::string const& GetConfigName() { return this->ConfigName; } // this returns the relative path between the HomeOutputDirectory and this // local generators StartOutputDirectory @@ -253,7 +254,7 @@ private: ImplicitDependTargetMap ImplicitDepends; - std::string ConfigurationName; + std::string ConfigName; std::string HomeRelativeOutputPath; |