summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-09-14 17:04:25 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-27 19:29:45 (GMT)
commit90ef1cfe4882139d9fe525352bc8e2e86b69f1db (patch)
tree1f45dffb70f00a2b0b8947d5cadbad4629ee764e /Source/cmLocalGenerator.cxx
parent25f1df3e816b62a518206cb88f69fdb15b2eebc9 (diff)
downloadCMake-90ef1cfe4882139d9fe525352bc8e2e86b69f1db.zip
CMake-90ef1cfe4882139d9fe525352bc8e2e86b69f1db.tar.gz
CMake-90ef1cfe4882139d9fe525352bc8e2e86b69f1db.tar.bz2
Move GenerateTargetManifest to cmGeneratorTarget.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index edf80e6..2a29061 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -530,10 +530,11 @@ void cmLocalGenerator::GenerateTargetManifest()
this->Makefile->GetConfigurations(configNames);
// Add our targets to the manifest for each configuration.
- cmTargets& targets = this->Makefile->GetTargets();
- for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
+ cmGeneratorTargetsType targets = this->Makefile->GetGeneratorTargets();
+ for(cmGeneratorTargetsType::iterator t = targets.begin();
+ t != targets.end(); ++t)
{
- cmTarget& target = t->second;
+ cmGeneratorTarget& target = *t->second;
if(configNames.empty())
{
target.GenerateTargetManifest(0);