summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-07-08 15:21:55 (GMT)
committerBrad King <brad.king@kitware.com>2015-07-09 13:50:05 (GMT)
commita4a2518dd47bd37f2204a0209c2eeb632d191d1e (patch)
tree83ea2a07185e32c6f5ea973bec5fceaad5a2577e /Source/cmLocalUnixMakefileGenerator3.h
parente7dcdd1011719b031d580d9094ad1f8c4701ef38 (diff)
downloadCMake-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.h3
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;