mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 06:45:38 +01: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 New Issue
Block a user