mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:09:06 +08:00
16 lines
525 B
Diff
16 lines
525 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index c4ba74d..8a52c2a 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -2089,7 +2089,9 @@ if(NOT CURL_DISABLE_INSTALL)
|
|
set(_implicit_libs ${CMAKE_C_IMPLICIT_LINK_LIBRARIES})
|
|
endif()
|
|
|
|
- foreach(_lib IN LISTS _implicit_libs CURL_LIBS)
|
|
+ set(CURL_LIBS_FLAT "")
|
|
+ vcpkg_curl_flatten(CURL_LIBS CURL_LIBS_FLAT)
|
|
+ foreach(_lib IN LISTS CURL_LIBS_FLAT)
|
|
if(TARGET "${_lib}")
|
|
set(_libname "${_lib}")
|
|
get_target_property(_imported "${_libname}" IMPORTED)
|