aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-07-14 13:34:37 +0000
committerBill Hoffman <bill.hoffman@kitware.com>2009-07-14 13:34:37 +0000
commit600460ffc61c1b386e8bb5e744046e8e8af45900 (patch)
tree7561c512c288cd2cacbe2a7a881788501151c775 /CMakeLists.txt
parent18b3833f90d8c8f8781d45cfcdc14c99a040fa13 (diff)
ENH: do not report if zlib is not found as it still works
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 769f264e4..3663e454f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -258,7 +258,7 @@ set(HAVE_LIBZ OFF)
set(HAVE_ZLIB_H OFF)
set(HAVE_ZLIB OFF)
if(CURL_ZLIB) # AND CURL_CONFIG_HAS_BEEN_RUN_BEFORE
- find_package(ZLIB)
+ find_package(ZLIB QUIET)
if(ZLIB_FOUND)
set(HAVE_ZLIB_H ON)
set(HAVE_ZLIB ON)