mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-20 04:51:21 +01:00
12 lines
291 B
CMake
12 lines
291 B
CMake
|
option(INSTALL_POLARSSL_HEADERS "Install PolarSSL headers." ON)
|
||
|
|
||
|
if(INSTALL_POLARSSL_HEADERS)
|
||
|
|
||
|
file(GLOB headers "polarssl/*.h")
|
||
|
|
||
|
install(FILES ${headers}
|
||
|
DESTINATION include/polarssl
|
||
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
|
||
|
|
||
|
endif(INSTALL_POLARSSL_HEADERS)
|