CMake: fix zlib include dir
ZLIB_INCLUDE_DIR was interpreted as a relative path from the working directory.
This commit is contained in:
Родитель
fcd362989c
Коммит
7c4a553baf
|
@ -52,7 +52,7 @@ if(ENABLE_ZLIB_SUPPORT)
|
|||
find_package(ZLIB)
|
||||
|
||||
if(ZLIB_FOUND)
|
||||
include_directories(ZLIB_INCLUDE_DIR)
|
||||
include_directories(${ZLIB_INCLUDE_DIR})
|
||||
endif(ZLIB_FOUND)
|
||||
endif(ENABLE_ZLIB_SUPPORT)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче