diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-08-21 05:21:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-09-22 14:21:38 (GMT) |
commit | ac76c53d33e16a159d3152105e6f99f241769691 (patch) | |
tree | 0432130cf129fd06439acc4349579972513bb8e9 /Source/CMakeLists.txt | |
parent | 1f5d9c5299bb7add5a7afcc1d054fd4259c04b89 (diff) | |
download | CMake-ac76c53d33e16a159d3152105e6f99f241769691.zip CMake-ac76c53d33e16a159d3152105e6f99f241769691.tar.gz CMake-ac76c53d33e16a159d3152105e6f99f241769691.tar.bz2 |
Build: Use imported target `CURL::libcurl` instead of variables
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index b1d8cb7..c8465a5 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -750,10 +750,10 @@ target_link_libraries( PUBLIC cmstd cmsys + CURL::libcurl EXPAT::EXPAT LibArchive::LibArchive ZLIB::ZLIB - ${CMAKE_CURL_LIBRARIES} ${CMAKE_JSONCPP_LIBRARIES} ${CMAKE_LIBUV_LIBRARIES} ${CMAKE_LIBRHASH_LIBRARIES} @@ -1002,9 +1002,8 @@ target_include_directories( CTestLib PUBLIC "${CMake_SOURCE_DIR}/Source/CTest" - ${CMAKE_CURL_INCLUDES} ) -target_link_libraries(CTestLib PUBLIC CMakeLib ${CMAKE_CURL_LIBRARIES}) +target_link_libraries(CTestLib PUBLIC CMakeLib) # # Build CPackLib |