diff options
author | Brad King <brad.king@kitware.com> | 2013-12-19 15:13:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-12-19 15:13:29 (GMT) |
commit | 0845aaddc5730b8634ac671b99861b20275ecf10 (patch) | |
tree | a10910d375ef2a0fd60e4af34b27a1301c3a6795 /Source/cmGlobalGenerator.cxx | |
parent | aed192d2cd7887bcce9135f825ea6a1c1044477b (diff) | |
parent | e2cb3e7d43936b86cee81007375c3b648c8edc00 (diff) | |
download | CMake-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/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index e4a9246..f160d28 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1379,6 +1379,10 @@ void cmGlobalGenerator::ComputeGeneratorTargetObjects() for(cmGeneratorTargetsType::iterator ti = targets.begin(); ti != targets.end(); ++ti) { + if (ti->second->Target->IsImported()) + { + continue; + } cmGeneratorTarget* gt = ti->second; gt->ClassifySources(); gt->LookupObjectLibraries(); |