From: Tuomo Rinne Date: Thu, 11 Oct 2018 18:55:53 +0000 (+0100) Subject: cmake: add find_dependency call for ZLIB to CMake config file X-Git-Tag: curl-7_62_0~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd98c1f34b19aff1ab3db55db36c86f5db5f2685;p=curl cmake: add find_dependency call for ZLIB to CMake config file --- diff --git a/CMake/curl-config.cmake.in b/CMake/curl-config.cmake.in index 2cae644c0..5f296343e 100644 --- a/CMake/curl-config.cmake.in +++ b/CMake/curl-config.cmake.in @@ -1,9 +1,15 @@ @PACKAGE_INIT@ -if("@USE_OPENSSL@") +if("@USE_OPENSSL@" OR "@CURL_ZLIB@" ) include(CMakeFindDependencyMacro) - find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@") + if ("@USE_OPENSSL@") + find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@") + endif() + if("@CURL_ZLIB@") + find_dependency(ZLIB "@ZLIB_VERSION_MAJOR@") + endif() endif() + include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake") check_required_components("@PROJECT_NAME@")