diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-08-21 05:52:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-09-22 14:21:39 (GMT) |
commit | e6fb5a1febde8a30e578f08e04887c6e4e5511b4 (patch) | |
tree | 5146de58d295bc0b34ce341d1bec3f8d1b01dba1 | |
parent | aa7290e8dc5c9d8073c150e5d351b21fa43847bb (diff) | |
download | CMake-e6fb5a1febde8a30e578f08e04887c6e4e5511b4.zip CMake-e6fb5a1febde8a30e578f08e04887c6e4e5511b4.tar.gz CMake-e6fb5a1febde8a30e578f08e04887c6e4e5511b4.tar.bz2 |
Build: Sort linked libraries list of `CMakeLib`
-rw-r--r-- | Source/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index e4286b9..fe04641 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -752,13 +752,13 @@ target_link_libraries( cmsys CURL::libcurl EXPAT::EXPAT - LibArchive::LibArchive - ZLIB::ZLIB JsonCpp::JsonCpp - LibUV::LibUV - LibRHash::LibRHash $<TARGET_NAME_IF_EXISTS:kwiml::kwiml> + LibArchive::LibArchive + LibRHash::LibRHash + LibUV::LibUV Threads::Threads + ZLIB::ZLIB ) # Check if we can build the Mach-O parser. |