diff options
| author | Peter Drahoš <drahosp@gmail.com> | 2010-12-05 18:38:06 +0100 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2010-12-12 00:20:31 +0200 |
| commit | 6484008297bac1e5ee96c87ee26dfa4c51e2daf2 (patch) | |
| tree | df18c9b3df2d849d449fca3edbd1ffdefc8a46e2 | |
| parent | 73c46d539fae5a54bb557428ccebb7c317f23399 (diff) | |
| download | libgit2-6484008297bac1e5ee96c87ee26dfa4c51e2daf2.tar.gz | |
Fix case sensitivity issue.
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e8b2e0df6..2848b06c8 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 |
