diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2022-09-07 13:20:53 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2022-09-07 13:20:53 (GMT) |
commit | 985b4c82a64c064e1d22351091206e73ed6fc727 (patch) | |
tree | bde65e548731d5f43b5ebaa666307401cba118ac /Source/cmTargetLinkLibrariesCommand.cxx | |
parent | a47eef32a30599e01e445e6dd69d4702bceae1bd (diff) | |
download | CMake-985b4c82a64c064e1d22351091206e73ed6fc727.zip CMake-985b4c82a64c064e1d22351091206e73ed6fc727.tar.gz CMake-985b4c82a64c064e1d22351091206e73ed6fc727.tar.bz2 |
Check link libraries properties: fix performances regression
Fixes: #23939
Diffstat (limited to 'Source/cmTargetLinkLibrariesCommand.cxx')
-rw-r--r-- | Source/cmTargetLinkLibrariesCommand.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.cxx b/Source/cmTargetLinkLibrariesCommand.cxx index ba901d0..af870da 100644 --- a/Source/cmTargetLinkLibrariesCommand.cxx +++ b/Source/cmTargetLinkLibrariesCommand.cxx @@ -379,9 +379,6 @@ bool cmTargetLinkLibrariesCommand(std::vector<std::string> const& args, target->SetProperty("LINK_INTERFACE_LIBRARIES", ""); } - target->CheckProperty("LINK_LIBRARIES", &mf); - target->CheckProperty("INTERFACE_LINK_LIBRARIES", &mf); - return true; } |