commit | 7c4a553bafc1eae37d8387603d0409f4681632dd | [log] [tgz] |
---|---|---|
author | hasufell <hasufell@hasufell.de> | Thu Mar 06 15:46:06 2014 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Mar 13 19:25:06 2014 +0100 |
tree | 4e3680a11ccc70c1b1123d5f0faf7b8f3badaf37 | |
parent | fcd362989ccc321d67c4a405ec21c64bb17133f4 [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 2d35835..0be112e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -52,7 +52,7 @@ find_package(ZLIB) if(ZLIB_FOUND) - include_directories(ZLIB_INCLUDE_DIR) + include_directories(${ZLIB_INCLUDE_DIR}) endif(ZLIB_FOUND) endif(ENABLE_ZLIB_SUPPORT)