summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx22
1 files changed, 17 insertions, 5 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 57f2eb0..65bc4d5 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -584,7 +584,8 @@ void cmGlobalGenerator::Configure()
// Setup relative path generation.
this->ConfigureRelativePaths();
-
+ this->TotalTargets.clear();
+
// start with this directory
cmLocalGenerator *lg = this->CreateLocalGenerator();
this->LocalGenerators.push_back(lg);
@@ -1019,17 +1020,28 @@ cmTarget* cmGlobalGenerator::FindTarget(const char* project,
const char* name)
{
std::vector<cmLocalGenerator*>* gens = &this->LocalGenerators;
+ // if project specific
if(project)
{
gens = &this->ProjectMap[project];
+ for(unsigned int i = 0; i < gens->size(); ++i)
+ {
+ cmTarget* ret = (*gens)[i]->GetMakefile()->FindTarget(name);
+ if(ret)
+ {
+ return ret;
+ }
+ }
}
- for(unsigned int i = 0; i < gens->size(); ++i)
+ // if all projects/directories
+ else
{
- cmTarget* ret = (*gens)[i]->GetMakefile()->FindTarget(name);
- if(ret)
+ std::map<cmStdString,cmTarget *>::iterator i = this->TotalTargets.find(name);
+ if (i == this->TotalTargets.end())
{
- return ret;
+ return 0;
}
+ return i->second;
}
return 0;
}