mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-02 18:11:38 +01:00
9872473f70
PolarSSL has been renamed to "mbed TLS" and version 2.0 dropped backwards compatibility. This commit adds only the necessary files without any modifications, so it doesn't compile yet.
12 lines
294 B
CMake
12 lines
294 B
CMake
option(INSTALL_MBEDTLS_HEADERS "Install mbed TLS headers." ON)
|
|
|
|
if(INSTALL_MBEDTLS_HEADERS)
|
|
|
|
file(GLOB headers "mbedtls/*.h")
|
|
|
|
install(FILES ${headers}
|
|
DESTINATION include/mbedtls
|
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
|
|
|
|
endif(INSTALL_MBEDTLS_HEADERS)
|