mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 20:20:59 +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)
|
||||
|
||||
if(ZLIB_FOUND)
|
||||
include_directories(ZLIB_INCLUDE_DIR)
|
||||
include_directories(${ZLIB_INCLUDE_DIR})
|
||||
endif(ZLIB_FOUND)
|
||||
endif(ENABLE_ZLIB_SUPPORT)
|
||||
|
||||
|
|
Loading…
Reference in a new issue