diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-05-15 22:48:30 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-05-15 22:48:30 +0200 |
commit | 73e0a9f453dbb7095fbfdaca1d6d6680f2aef17c (patch) | |
tree | 1f8e2f6cea01bda07fd71276c28a8b0732b72dc2 | |
parent | Prevent timeline being black on some platforms (diff) | |
download | nheko-73e0a9f453dbb7095fbfdaca1d6d6680f2aef17c.tar.xz |
Drop explicit ZLIB dependency
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 04d20690..532efb9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,8 +35,6 @@ option(USE_BUNDLED_OPENSSL "Use the bundled version of OpenSSL." option(USE_BUNDLED_MTXCLIENT "Use the bundled version of the Matrix Client library." ${HUNTER_ENABLED}) option(USE_BUNDLED_SODIUM "Use the bundled version of libsodium." ${HUNTER_ENABLED}) -option(USE_BUNDLED_ZLIB "Use the bundled version of zlib." - ${HUNTER_ENABLED}) option(USE_BUNDLED_LMDB "Use the bundled version of lmdb." ${HUNTER_ENABLED}) option(USE_BUNDLED_LMDBXX "Use the bundled version of lmdb++." @@ -322,10 +320,7 @@ find_package(Boost 1.70 REQUIRED COMPONENTS iostreams system thread) -if(USE_BUNDLED_ZLIB) - hunter_add_package(ZLIB) -endif() -find_package(ZLIB REQUIRED) + if(USE_BUNDLED_OPENSSL) hunter_add_package(OpenSSL) endif() |