summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-12-19 15:13:29 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-12-19 15:13:29 (GMT)
commit0845aaddc5730b8634ac671b99861b20275ecf10 (patch)
treea10910d375ef2a0fd60e4af34b27a1301c3a6795 /Source/cmLocalGenerator.cxx
parentaed192d2cd7887bcce9135f825ea6a1c1044477b (diff)
parente2cb3e7d43936b86cee81007375c3b648c8edc00 (diff)
downloadCMake-0845aaddc5730b8634ac671b99861b20275ecf10.zip
CMake-0845aaddc5730b8634ac671b99861b20275ecf10.tar.gz
CMake-0845aaddc5730b8634ac671b99861b20275ecf10.tar.bz2
Merge topic 'minor-cleanup'
e2cb3e7 Help: Note that COMPATIBLE_INTERFACE_ properties may be origin-debugged. 41e48c4 Avoid certain actions on IMPORTED targets.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 68d603a..402855c 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -261,6 +261,10 @@ void cmLocalGenerator::TraceDependencies()
for(cmGeneratorTargetsType::iterator t = targets.begin();
t != targets.end(); ++t)
{
+ if (t->second->Target->IsImported())
+ {
+ continue;
+ }
t->second->TraceDependencies();
}
}
@@ -545,6 +549,10 @@ void cmLocalGenerator::GenerateTargetManifest()
{
continue;
}
+ if (target.Target->IsImported())
+ {
+ continue;
+ }
if(configNames.empty())
{
target.GenerateTargetManifest(0);