diff options
author | Tuomo Rinne <me@tuomo.co.uk> | 2018-10-27 11:23:19 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-10-29 17:10:31 +0100 |
commit | e97679a360dda4ea6188b09a145f73a2a84acedd (patch) | |
tree | 622e4d3ccb98178ce5b6af8a0dea00475718fbc6 | |
parent | dd98c1f34b19aff1ab3db55db36c86f5db5f2685 (diff) | |
download | curl-e97679a360dda4ea6188b09a145f73a2a84acedd.tar.gz |
cmake: uniform ZLIB to use USE_ variable and clean curl-config.cmake.in
Closes #3123
-rw-r--r-- | CMake/curl-config.cmake.in | 15 | ||||
-rw-r--r-- | CMakeLists.txt | 4 |
2 files changed, 8 insertions, 11 deletions
diff --git a/CMake/curl-config.cmake.in b/CMake/curl-config.cmake.in index 5f296343e..1294e173a 100644 --- a/CMake/curl-config.cmake.in +++ b/CMake/curl-config.cmake.in @@ -1,15 +1,12 @@ @PACKAGE_INIT@ -if("@USE_OPENSSL@" OR "@CURL_ZLIB@" ) - include(CMakeFindDependencyMacro) - if ("@USE_OPENSSL@") - find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@") - endif() - if("@CURL_ZLIB@") - find_dependency(ZLIB "@ZLIB_VERSION_MAJOR@") - endif() +include(CMakeFindDependencyMacro) +if(@USE_OPENSSL@) + find_dependency(OpenSSL @OPENSSL_VERSION_MAJOR@) +endif() +if(@USE_ZLIB@) + find_dependency(ZLIB @ZLIB_VERSION_MAJOR@) endif() - include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake") check_required_components("@PROJECT_NAME@") diff --git a/CMakeLists.txt b/CMakeLists.txt index 0478ae179..d7ad6caa1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -508,13 +508,13 @@ check_library_exists("${CURL_LIBS}" dlopen "" HAVE_DLOPEN) option(CURL_ZLIB "Set to ON to enable building curl with zlib support." ON) set(HAVE_LIBZ OFF) set(HAVE_ZLIB_H OFF) -set(HAVE_ZLIB OFF) +set(USE_ZLIB OFF) if(CURL_ZLIB) find_package(ZLIB QUIET) if(ZLIB_FOUND) set(HAVE_ZLIB_H ON) - set(HAVE_ZLIB ON) set(HAVE_LIBZ ON) + set(USE_ZLIB ON) # Depend on ZLIB via imported targets if supported by the running # version of CMake. This allows our dependents to get our dependencies |