summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-25 11:56:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-27 06:44:24 (GMT)
commit9b244cc0ecff0cde22b71b7097a3d84c018c6044 (patch)
tree11775882a0fc5661344ea05f43505f29b76a6f8c /Source/cmLocalGenerator.cxx
parentdef6da616b81958c9f1058a4e520ac3cbc534757 (diff)
downloadCMake-9b244cc0ecff0cde22b71b7097a3d84c018c6044.zip
CMake-9b244cc0ecff0cde22b71b7097a3d84c018c6044.tar.gz
CMake-9b244cc0ecff0cde22b71b7097a3d84c018c6044.tar.bz2
cmLocalGenerator: Store imported targets in a separate container.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 9d5335e..1bc7f81 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -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)