diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-19 11:12:25 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-24 07:39:39 (GMT) |
commit | 194bb06803c7dc005d9825de13bdb91fe6b7628f (patch) | |
tree | 5210c8223f59e362baeed32ed2162a1cff23b391 | |
parent | c5f07e0537f2b671f271ad8ac4b6c0a529cd4beb (diff) | |
download | CMake-194bb06803c7dc005d9825de13bdb91fe6b7628f.zip CMake-194bb06803c7dc005d9825de13bdb91fe6b7628f.tar.gz CMake-194bb06803c7dc005d9825de13bdb91fe6b7628f.tar.bz2 |
cmGlobalGenerator: Remove unused method.
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 6 | ||||
-rw-r--r-- | Source/cmGlobalGenerator.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 46ef2f3..8e3a1ae 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1947,12 +1947,6 @@ void cmGlobalGenerator::AddMakefile(cmMakefile *mf) this->CMakeInstance->UpdateProgress("Configuring", prog); } -//---------------------------------------------------------------------------- -void cmGlobalGenerator::AddLocalGenerator(cmLocalGenerator *lg) -{ - this->LocalGenerators.push_back(lg); -} - void cmGlobalGenerator::AddInstallComponent(const char* component) { if(component && *component) diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index b2dffcc..83cbc3f 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -186,7 +186,6 @@ public: {this->CurrentMakefile = mf;} void AddMakefile(cmMakefile *mf); - void AddLocalGenerator(cmLocalGenerator *lg); ///! Set an generator for an "external makefile based project" void SetExternalMakefileProjectGenerator( |