From 0244c5f49e98187a8474e1098d61fdfa632d34eb Mon Sep 17 00:00:00 2001 From: Floris Bos Date: Thu, 5 Mar 2020 15:23:24 +0100 Subject: [PATCH] Linux: remove dependency on zlib headers - We are only using zlib indirectly through libarchive (For Windows/Mac OS X we do keep requiring zlib headers, as we need them to build the bundled libarchive on these platforms) --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 767766d..7a401e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -198,7 +198,6 @@ elseif(APPLE) COMMAND "${MACDEPLOYQT}" "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.app" -qmldir="${CMAKE_CURRENT_SOURCE_DIR}") else() - find_package(ZLIB REQUIRED) find_package(CURL REQUIRED) find_package(LibArchive REQUIRED) find_package(Qt5 COMPONENTS DBus)