Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2015-05-12 16:48:13 +0300
committerKlaas Freitag <freitag@owncloud.com>2015-05-19 18:09:39 +0300
commit67d38bc87b775a096d3df22d5df5c4fa118b4ce5 (patch)
tree2391614d4954d674e3ca87a93fe4647a178f247f /CMakeLists.txt
parentb36ff1ed1d4dbe482a0a230d70ac84678b533141 (diff)
Filesystem Utilities: Add Checksum calculation methods.
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 2ff58de73..da6d004e8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -165,13 +165,13 @@ endif()
find_package(Sphinx)
find_package(PdfLatex)
-
find_package(SQLite3 3.8.0 REQUIRED)
# On some OS, we want to use our own, not the system sqlite
if (USE_OUR_OWN_SQLITE3)
include_directories(BEFORE ${SQLITE3_INCLUDE_DIR})
endif()
+find_package(ZLIB)
configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)