diff options
author | Brad King <brad.king@kitware.com> | 2017-09-01 14:26:01 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-09-01 14:26:08 (GMT) |
commit | b568a18997ebb9d54a64cf86fa6443be3dd3bf7e (patch) | |
tree | b94f0b34c56974c3853560e06233b8419c204ad6 /Source | |
parent | bd777178006c643bcab4bcbb1c5432f9306568ec (diff) | |
parent | a47a853376184031051ed744ed4718a69876002d (diff) | |
download | CMake-b568a18997ebb9d54a64cf86fa6443be3dd3bf7e.zip CMake-b568a18997ebb9d54a64cf86fa6443be3dd3bf7e.tar.gz CMake-b568a18997ebb9d54a64cf86fa6443be3dd3bf7e.tar.bz2 |
Merge topic 'tll-global-unknown-lib'
a47a8533 target_link_libraries: Allow linking to UNKNOWN IMPORTED GLOBAL libs
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1220
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTargetLinkLibrariesCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.cxx b/Source/cmTargetLinkLibrariesCommand.cxx index bfae53c..d146640 100644 --- a/Source/cmTargetLinkLibrariesCommand.cxx +++ b/Source/cmTargetLinkLibrariesCommand.cxx @@ -366,6 +366,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib, if (tgt && (tgt->GetType() != cmStateEnums::STATIC_LIBRARY) && (tgt->GetType() != cmStateEnums::SHARED_LIBRARY) && + (tgt->GetType() != cmStateEnums::UNKNOWN_LIBRARY) && (tgt->GetType() != cmStateEnums::INTERFACE_LIBRARY) && !tgt->IsExecutableWithExports()) { std::ostringstream e; |