commit | d113a9d60fafeb81560689bec0f3533fd495ef64 | [log] [tgz] |
---|---|---|
author | hasufell <hasufell@hasufell.de> | Thu Mar 06 15:46:06 2014 +0100 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 08 11:06:59 2014 +0200 |
tree | f0901b64a3046be73dc42358c0bd977cf313dcaa | |
parent | 69ebf327254805352d02683edbce43c9be25718a [diff] |
CMake: fix zlib include dir ZLIB_INCLUDE_DIR was interpreted as a relative path from the working directory.
diff --git a/CMakeLists.txt b/CMakeLists.txt index 908f7a4..4699a71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -41,7 +41,7 @@ find_package(ZLIB) if(ZLIB_FOUND) - include_directories(ZLIB_INCLUDE_DIR) + include_directories(${ZLIB_INCLUDE_DIR}) endif(ZLIB_FOUND) endif(ENABLE_ZLIB_SUPPORT)