From e97679a360dda4ea6188b09a145f73a2a84acedd Mon Sep 17 00:00:00 2001 From: Tuomo Rinne Date: Sat, 27 Oct 2018 11:23:19 +0100 Subject: cmake: uniform ZLIB to use USE_ variable and clean curl-config.cmake.in Closes #3123 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') 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 -- cgit v1.2.3