cmGlobalGenerator: Rename progress initializer method.
This commit is contained in:
parent
b9eb3cd140
commit
2394584ce2
|
@ -1340,7 +1340,7 @@ void cmGlobalGenerator::Generate()
|
|||
|
||||
// Create a map from local generator to the complete set of targets
|
||||
// it builds by default.
|
||||
this->FillLocalGeneratorToTargetMap();
|
||||
this->InitializeProgressMarks();
|
||||
|
||||
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
||||
{
|
||||
|
|
|
@ -398,7 +398,7 @@ protected:
|
|||
void CheckLocalGenerators();
|
||||
bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen) const;
|
||||
bool IsExcluded(cmLocalGenerator* root, cmGeneratorTarget* target) const;
|
||||
virtual void FillLocalGeneratorToTargetMap() {}
|
||||
virtual void InitializeProgressMarks() {}
|
||||
void CreateDefaultGlobalTargets(cmTargets* targets);
|
||||
cmTarget CreateGlobalTarget(const std::string& name, const char* message,
|
||||
const cmCustomCommandLines* commandLines,
|
||||
|
|
|
@ -919,7 +919,7 @@ cmGlobalUnixMakefileGenerator3
|
|||
|
||||
// Build a map that contains a the set of targets used by each local
|
||||
// generator directory level.
|
||||
void cmGlobalUnixMakefileGenerator3::FillLocalGeneratorToTargetMap()
|
||||
void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks()
|
||||
{
|
||||
this->LocalGeneratorToTargetMap.clear();
|
||||
// Loop over all targets in all local generators.
|
||||
|
|
|
@ -209,7 +209,7 @@ private:
|
|||
|
||||
std::map<cmLocalGenerator*, std::set<cmGeneratorTarget const*> >
|
||||
LocalGeneratorToTargetMap;
|
||||
virtual void FillLocalGeneratorToTargetMap();
|
||||
virtual void InitializeProgressMarks();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue