vcpkg/ports/curl/0020-fix-pc-file.patch

16 lines
525 B
Diff
Raw Normal View History

diff --git a/CMakeLists.txt b/CMakeLists.txt
2024-11-11 16:32:33 +08:00
index c4ba74d..8a52c2a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
2024-11-11 16:32:33 +08:00
@@ -2089,7 +2089,9 @@ if(NOT CURL_DISABLE_INSTALL)
set(_implicit_libs ${CMAKE_C_IMPLICIT_LINK_LIBRARIES})
endif()
2024-03-29 13:59:27 +08:00
2024-11-11 16:32:33 +08:00
- foreach(_lib IN LISTS _implicit_libs CURL_LIBS)
2024-01-03 06:32:00 +08:00
+ set(CURL_LIBS_FLAT "")
+ vcpkg_curl_flatten(CURL_LIBS CURL_LIBS_FLAT)
2024-09-12 05:03:28 +08:00
+ foreach(_lib IN LISTS CURL_LIBS_FLAT)
2024-01-03 06:32:00 +08:00
if(TARGET "${_lib}")
set(_libname "${_lib}")
get_target_property(_imported "${_libname}" IMPORTED)