Commit 6484008297bac1e5ee96c87ee26dfa4c51e2daf2

Peter Drahoš 2010-12-05T18:38:06

Fix case sensitivity issue.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e8b2e0d..2848b06 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,7 +15,7 @@ PROJECT(libgit2 C)
 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
 
 # Find required dependencies
-FIND_PACKAGE(zlib REQUIRED)
+FIND_PACKAGE(ZLIB REQUIRED)
 INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIR} src)
 
 # Try finding openssl