Merge topic 'minor-cleanups'
22d09ecf cmLocalGenerator: Remove ConfigureFinalPass. 821a711b project(): Remove unused variable.
This commit is contained in:
commit
71d5245990
@ -1540,7 +1540,7 @@ void cmGlobalGenerator::CheckLocalGenerators()
|
|||||||
cmState* state = this->GetCMakeInstance()->GetState();
|
cmState* state = this->GetCMakeInstance()->GetState();
|
||||||
for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i)
|
for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i)
|
||||||
{
|
{
|
||||||
this->LocalGenerators[i]->ConfigureFinalPass();
|
this->LocalGenerators[i]->GetMakefile()->ConfigureFinalPass();
|
||||||
cmTargets &targets =
|
cmTargets &targets =
|
||||||
this->LocalGenerators[i]->GetMakefile()->GetTargets();
|
this->LocalGenerators[i]->GetMakefile()->GetTargets();
|
||||||
for (cmTargets::iterator l = targets.begin();
|
for (cmTargets::iterator l = targets.begin();
|
||||||
|
@ -113,11 +113,6 @@ void cmLocalGenerator::ComputeObjectMaxPath()
|
|||||||
this->ObjectMaxPathViolations.clear();
|
this->ObjectMaxPathViolations.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmLocalGenerator::ConfigureFinalPass()
|
|
||||||
{
|
|
||||||
this->Makefile->ConfigureFinalPass();
|
|
||||||
}
|
|
||||||
|
|
||||||
void cmLocalGenerator::TraceDependencies()
|
void cmLocalGenerator::TraceDependencies()
|
||||||
{
|
{
|
||||||
std::vector<std::string> configs;
|
std::vector<std::string> configs;
|
||||||
|
@ -54,11 +54,6 @@ public:
|
|||||||
|
|
||||||
virtual void AddHelperCommands() {}
|
virtual void AddHelperCommands() {}
|
||||||
|
|
||||||
/**
|
|
||||||
* Perform any final calculations prior to generation
|
|
||||||
*/
|
|
||||||
void ConfigureFinalPass();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate the install rules files in this directory.
|
* Generate the install rules files in this directory.
|
||||||
*/
|
*/
|
||||||
|
@ -233,7 +233,6 @@ bool cmProjectCommand
|
|||||||
const char* include = this->Makefile->GetDefinition(extraInclude);
|
const char* include = this->Makefile->GetDefinition(extraInclude);
|
||||||
if(include)
|
if(include)
|
||||||
{
|
{
|
||||||
std::string fullFilePath;
|
|
||||||
bool readit =
|
bool readit =
|
||||||
this->Makefile->ReadDependentFile(include);
|
this->Makefile->ReadDependentFile(include);
|
||||||
if(!readit && !cmSystemTools::GetFatalErrorOccured())
|
if(!readit && !cmSystemTools::GetFatalErrorOccured())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user