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/cmLocalNinjaGenerator.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/cmLocalNinjaGenerator.h')
-rw-r--r-- | Source/cmLocalNinjaGenerator.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmLocalNinjaGenerator.h b/Source/cmLocalNinjaGenerator.h index 8bc5640..d10be0c 100644 --- a/Source/cmLocalNinjaGenerator.h +++ b/Source/cmLocalNinjaGenerator.h @@ -46,9 +46,6 @@ public: const cmake* GetCMakeInstance() const; cmake* GetCMakeInstance(); - std::string const& GetConfigName() const - { return this->ConfigName; } - /// @returns the relative path between the HomeOutputDirectory and this /// local generators StartOutputDirectory. std::string GetHomeRelativeOutputPath() const @@ -110,8 +107,6 @@ private: void WriteProcessedMakefile(std::ostream& os); void WritePools(std::ostream& os); - void SetConfigName(); - void WriteCustomCommandRule(); void WriteCustomCommandBuildStatement(cmCustomCommand const *cc, const cmNinjaDeps& orderOnlyDeps); @@ -120,7 +115,6 @@ private: std::string MakeCustomLauncher(cmCustomCommandGenerator const& ccg); - std::string ConfigName; std::string HomeRelativeOutputPath; typedef std::map<cmCustomCommand const*, std::set<cmTarget*> > |