mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 18:39:01 +08:00
52 lines
1.1 KiB
CMake
52 lines
1.1 KiB
CMake
|
find_path(
|
||
|
LIBCURL_INCLUDE_DIRS
|
||
|
NAMES curl/curl.h
|
||
|
)
|
||
|
|
||
|
find_library(
|
||
|
LIBCURL_LIBRARY_DEBUG
|
||
|
NAMES libcurl-d_imp libcurl-d curl-d curl
|
||
|
)
|
||
|
|
||
|
find_library(
|
||
|
LIBCURL_LIBRARY_RELEASE
|
||
|
NAMES libcurl_imp libcurl curl
|
||
|
)
|
||
|
|
||
|
include(SelectLibraryConfigurations)
|
||
|
select_library_configurations(LIBCURL)
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(
|
||
|
LIBCURL
|
||
|
REQUIRED_VARS LIBCURL_LIBRARIES LIBCURL_INCLUDE_DIRS
|
||
|
)
|
||
|
|
||
|
# CURL dependencies
|
||
|
# https://github.com/Microsoft/vcpkg/issues/4312
|
||
|
# https://github.com/microsoft/vcpkg/commit/ee325d14276e7bd7961e94e58293b02d6e9e92da
|
||
|
# https://github.com/microsoft/vcpkg/pull/6698
|
||
|
if (LIBCURL_FOUND)
|
||
|
find_package(OpenSSL QUIET)
|
||
|
find_package(ZLIB QUIET)
|
||
|
|
||
|
if (OPENSSL_FOUND)
|
||
|
list(APPEND LIBCURL_LIBRARIES
|
||
|
OpenSSL::SSL
|
||
|
OpenSSL::Crypto
|
||
|
)
|
||
|
endif ()
|
||
|
|
||
|
if (ZLIB_FOUND)
|
||
|
list(APPEND LIBCURL_LIBRARIES
|
||
|
ZLIB::ZLIB
|
||
|
)
|
||
|
endif ()
|
||
|
|
||
|
if (WIN32)
|
||
|
list(APPEND LIBCURL_LIBRARIES
|
||
|
Crypt32
|
||
|
)
|
||
|
endif ()
|
||
|
endif ()
|