From b71bfef702fee43cb2d5e4374f6929e5dc74d0e4 Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Mon, 3 Oct 2011 17:10:18 +0000 Subject: [PATCH] fixed bug with using not built-in ZLIB library --- modules/core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/CMakeLists.txt b/modules/core/CMakeLists.txt index 85c874ef2d..88c457f0ae 100644 --- a/modules/core/CMakeLists.txt +++ b/modules/core/CMakeLists.txt @@ -1,5 +1,5 @@ if(ZLIB_FOUND) - include_directories(${ZLIB_INCUDE_DIR}) + include_directories(${ZLIB_INCLUDE_DIR}) else() include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../3rdparty/zlib") endif()