cmLocalGenerator: Remove ConfigureFinalPass.

Call the cmMakefile implementation directly.  This is a configure-time
construct.
This commit is contained in:
Stephen Kelly 2015-06-09 22:27:35 +02:00
parent 821a711b6f
commit 22d09ecf33
3 changed files with 1 additions and 11 deletions

View File

@ -1540,7 +1540,7 @@ void cmGlobalGenerator::CheckLocalGenerators()
cmState* state = this->GetCMakeInstance()->GetState();
for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i)
{
this->LocalGenerators[i]->ConfigureFinalPass();
this->LocalGenerators[i]->GetMakefile()->ConfigureFinalPass();
cmTargets &targets =
this->LocalGenerators[i]->GetMakefile()->GetTargets();
for (cmTargets::iterator l = targets.begin();

View File

@ -113,11 +113,6 @@ void cmLocalGenerator::ComputeObjectMaxPath()
this->ObjectMaxPathViolations.clear();
}
void cmLocalGenerator::ConfigureFinalPass()
{
this->Makefile->ConfigureFinalPass();
}
void cmLocalGenerator::TraceDependencies()
{
std::vector<std::string> configs;

View File

@ -54,11 +54,6 @@ public:
virtual void AddHelperCommands() {}
/**
* Perform any final calculations prior to generation
*/
void ConfigureFinalPass();
/**
* Generate the install rules files in this directory.
*/