summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-09-26 16:54:56 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-09-26 17:32:54 (GMT)
commit1e83a963d8983f09f5fe6fbf7d268f920b4ed7d0 (patch)
treeac7da1df619640dea3423f2875641a1da9aefd92 /Source/cmGlobalGenerator.cxx
parent12f0e13c5f546a721d893adedba327c18c5c9e5e (diff)
downloadCMake-1e83a963d8983f09f5fe6fbf7d268f920b4ed7d0.zip
CMake-1e83a963d8983f09f5fe6fbf7d268f920b4ed7d0.tar.gz
CMake-1e83a963d8983f09f5fe6fbf7d268f920b4ed7d0.tar.bz2
QtAutogen: Split initializer methods into separate class.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 5848a88..a86c91c 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1269,7 +1269,7 @@ bool cmGlobalGenerator::Compute()
for (std::vector<cmTarget const*>::iterator it = autogenTargets.begin();
it != autogenTargets.end(); ++it)
{
- cmQtAutoGenerators::SetupAutoGenerateTarget(*it);
+ cmQtAutoGeneratorInitializer::SetupAutoGenerateTarget(*it);
}
#endif
@@ -1451,7 +1451,7 @@ cmGlobalGenerator::CreateQtAutoGeneratorsTargets()
continue;
}
- cmQtAutoGenerators::InitializeAutogenSources(&ti->second);
+ cmQtAutoGeneratorInitializer::InitializeAutogenSources(&ti->second);
targetNames.push_back(ti->second.GetName());
}
for(std::vector<std::string>::iterator ti = targetNames.begin();
@@ -1459,7 +1459,7 @@ cmGlobalGenerator::CreateQtAutoGeneratorsTargets()
{
cmTarget* target = this->LocalGenerators[i]
->GetMakefile()->FindTarget(*ti, true);
- cmQtAutoGenerators::InitializeAutogenTarget(
+ cmQtAutoGeneratorInitializer::InitializeAutogenTarget(
this->LocalGenerators[i], target);
autogenTargets.push_back(target);
}