cmLocalGenerator: Store imported targets in a separate container.

This commit is contained in:
Stephen Kelly
2015-10-25 12:56:31 +01:00
parent def6da616b
commit 9b244cc0ec
3 changed files with 8 additions and 0 deletions
+5
View File
@@ -455,6 +455,11 @@ void cmLocalGenerator::AddGeneratorTarget(cmGeneratorTarget* gt)
this->GeneratorTargets.push_back(gt);
}
void cmLocalGenerator::AddImportedGeneratorTarget(cmGeneratorTarget* gt)
{
this->ImportedGeneratorTargets.push_back(gt);
}
struct NamedGeneratorTargetFinder
{
NamedGeneratorTargetFinder(std::string const& name)