mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-24 03:01:00 +00:00
CMake: fix zlib include dir
ZLIB_INCLUDE_DIR was interpreted as a relative path from the working directory.
This commit is contained in:
parent
69ebf32725
commit
d113a9d60f
|
@ -41,7 +41,7 @@ if(ENABLE_ZLIB_SUPPORT)
|
||||||
find_package(ZLIB)
|
find_package(ZLIB)
|
||||||
|
|
||||||
if(ZLIB_FOUND)
|
if(ZLIB_FOUND)
|
||||||
include_directories(ZLIB_INCLUDE_DIR)
|
include_directories(${ZLIB_INCLUDE_DIR})
|
||||||
endif(ZLIB_FOUND)
|
endif(ZLIB_FOUND)
|
||||||
endif(ENABLE_ZLIB_SUPPORT)
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue