summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-09-16 12:42:58 +0200
committerljfa-ag <ljfa-ag@web.de>2015-09-16 12:42:58 +0200
commit7cb16a28b6bba36e125d680c86e182033aa17666 (patch)
treef6d26c20760c0845a23a045cd71237ac8b1fdfeb
parentedaaac5a6c7d20eb5baa6de27aa79cb50878a10b (diff)
downloadProject-Tick-7cb16a28b6bba36e125d680c86e182033aa17666.tar.gz
Project-Tick-7cb16a28b6bba36e125d680c86e182033aa17666.zip
Fix CMake not finding zlib
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c16860a8ed..bed0ca668a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -20,7 +20,7 @@ add_library(nbt++ STATIC
src/text/json_formatter.cpp)
-find_package(zlib REQUIRED)
+find_package(ZLIB REQUIRED)
find_package(CxxTest)
option(NBT_BUILD_TESTS "Build the unit tests. Requires CxxTest." ${CXXTEST_FOUND})