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>2012-09-19 13:30:49 (GMT)
commit987e12e2f962b6e9ed9f15f8ff486512911b744e (patch)
tree8d93e37c9e1893a15eda470c04111e679f4c0c3d /Source/cmLocalGenerator.cxx
parent14bf7783f4de829f62041d1dbf3989160820b2b7 (diff)
downloadCMake-987e12e2f962b6e9ed9f15f8ff486512911b744e.zip
CMake-987e12e2f962b6e9ed9f15f8ff486512911b744e.tar.gz
CMake-987e12e2f962b6e9ed9f15f8ff486512911b744e.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 cf2af0a..6239557 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -533,10 +533,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);