diff options
author | Brad King <brad.king@kitware.com> | 2017-08-31 17:04:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-08-31 17:10:26 (GMT) |
commit | a47a853376184031051ed744ed4718a69876002d (patch) | |
tree | 52373cfa5c1ac25da037b531233fc89564f7c2b4 /Source | |
parent | 4f96641ba2e0b26523f962e2c18aa83a8b91c6aa (diff) | |
download | CMake-a47a853376184031051ed744ed4718a69876002d.zip CMake-a47a853376184031051ed744ed4718a69876002d.tar.gz CMake-a47a853376184031051ed744ed4718a69876002d.tar.bz2 |
target_link_libraries: Allow linking to UNKNOWN IMPORTED GLOBAL libs
This combination was accidentally rejected. Allow it and add a test.
Fixes: #17245
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; |