mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 03:09:00 +08:00
6a4359c5c1
Co-authored-by: MonicaLiu <110024546+MonicaLiu0311@users.noreply.github.com>
76 lines
3.5 KiB
CMake
76 lines
3.5 KiB
CMake
cmake_policy(PUSH)
|
|
cmake_policy(SET CMP0012 NEW)
|
|
cmake_policy(SET CMP0054 NEW)
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
if(NOT CMAKE_VERSION VERSION_LESS 3.14 AND COMPONENTS IN_LIST ARGS)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/CURLConfigComponents.cmake")
|
|
endif()
|
|
|
|
list(REMOVE_ITEM ARGS "NO_MODULE" "CONFIG" "MODULE")
|
|
_find_package(${ARGS} CONFIG)
|
|
|
|
if(CURL_FOUND)
|
|
include("${CMAKE_ROOT}/Modules/SelectLibraryConfigurations.cmake")
|
|
|
|
set(_curl_target CURL::libcurl_shared)
|
|
if(TARGET CURL::libcurl_static)
|
|
set(_curl_target CURL::libcurl_static)
|
|
endif()
|
|
get_target_property(_curl_include_dirs ${_curl_target} INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_target_property(_curl_link_libraries ${_curl_target} INTERFACE_LINK_LIBRARIES)
|
|
if(NOT _curl_link_libraries)
|
|
set(_curl_link_libraries "")
|
|
endif()
|
|
if(_curl_link_libraries MATCHES "ZLIB::ZLIB")
|
|
string(REGEX REPLACE "([\$]<[^;]*)?ZLIB::ZLIB([^;]*>)?" "${ZLIB_LIBRARIES}" _curl_link_libraries "${_curl_link_libraries}")
|
|
endif()
|
|
if(_curl_link_libraries MATCHES "OpenSSL::")
|
|
string(REGEX REPLACE "([\$]<[^;]*)?OpenSSL::(SSL|Crypto)([^;]*>)?" "${OPENSSL_LIBRARIES}" _curl_link_libraries "${_curl_link_libraries}")
|
|
endif()
|
|
if(_curl_link_libraries MATCHES "libssh2::libssh2")
|
|
# TODO: move find_dependency(Libssh2 CONFIG) into CURL config
|
|
set(_libssh2_target "${CMAKE_MATCH_0}")
|
|
find_package(Libssh2 CONFIG QUIET)
|
|
get_target_property(_libssh2_LIBRARY_DEBUG "${_libssh2_target}" IMPORTED_IMPLIB_DEBUG)
|
|
get_target_property(_libssh2_LIBRARY_RELEASE "${_libssh2_target}" IMPORTED_IMPLIB_RELEASE)
|
|
if(NOT IMPORTED_IMPLIB_DEBUG AND NOT IMPORTED_IMPLIB_RELEASE)
|
|
get_target_property(_libssh2_LIBRARY_DEBUG "${_libssh2_target}" IMPORTED_LOCATION_DEBUG)
|
|
get_target_property(_libssh2_LIBRARY_RELEASE "${_libssh2_target}" IMPORTED_LOCATION_RELEASE)
|
|
endif()
|
|
select_library_configurations(_libssh2)
|
|
string(REGEX REPLACE "([\$]<[^;]*)?${_libssh2_target}([^;]*>)?" "${_libssh2_LIBRARIES}" _curl_link_libraries "${_curl_link_libraries}")
|
|
unset(_libssh2_LIBRARIES)
|
|
unset(_libssh2_LIBRARY_DEBUG)
|
|
unset(_libssh2_LIBRARY_RELEASE)
|
|
unset(_libssh2_target)
|
|
endif()
|
|
if(_curl_link_libraries MATCHES "::")
|
|
message(WARNING "CURL_LIBRARIES list at least one target. This will not work for use cases where targets are not resolved.")
|
|
endif()
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
get_target_property(_curl_location_debug ${_curl_target} IMPORTED_IMPLIB_DEBUG)
|
|
get_target_property(_curl_location_release ${_curl_target} IMPORTED_IMPLIB_RELEASE)
|
|
endif()
|
|
|
|
if(NOT _curl_location_debug AND NOT _curl_location_release)
|
|
get_target_property(_curl_location_debug ${_curl_target} IMPORTED_LOCATION_DEBUG)
|
|
get_target_property(_curl_location_release ${_curl_target} IMPORTED_LOCATION_RELEASE)
|
|
endif()
|
|
|
|
set(CURL_INCLUDE_DIRS "${_curl_include_dirs}")
|
|
set(CURL_LIBRARY_DEBUG "${_curl_location_debug}" CACHE INTERNAL "vcpkg")
|
|
set(CURL_LIBRARY_RELEASE "${_curl_location_release}" CACHE INTERNAL "vcpkg")
|
|
select_library_configurations(CURL)
|
|
set(CURL_LIBRARIES ${CURL_LIBRARY} ${_curl_link_libraries})
|
|
set(CURL_VERSION_STRING "${CURL_VERSION}")
|
|
|
|
unset(_curl_include_dirs)
|
|
unset(_curl_link_libraries)
|
|
unset(_curl_location_debug)
|
|
unset(_curl_location_release)
|
|
unset(_curl_target)
|
|
endif()
|
|
cmake_policy(POP)
|