vcpkg/ports/czmq/Findlibcurl.cmake
myd7349 fb4cc37262 [czmq] Add new port (#4979)
* [czmq] Add new port

* [czmq] Modernize

* [czmq] Update to 2019-05-17

* [czmq] Update to 2019-05-29

* [czmq] Fix OpenSSL not found issue on x64-windows

* [czmq] Update portfile.cmake

* [czmq] Update to 2019-06-10

* [czmq] Clean

* [czmq] Add Homepage

* [czmq] Use vcpkg_check_features

* [czmq] Disable parallel configuration

* Fix typo when using feature options
2019-07-02 15:23:53 -07:00

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 ()