diff options
Diffstat (limited to 'externals/mbedtls/include/CMakeLists.txt')
-rw-r--r-- | externals/mbedtls/include/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/externals/mbedtls/include/CMakeLists.txt b/externals/mbedtls/include/CMakeLists.txt new file mode 100644 index 0000000000..c2f2bd4e6f --- /dev/null +++ b/externals/mbedtls/include/CMakeLists.txt @@ -0,0 +1,16 @@ +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) + +# Make config.h available in an out-of-source build. ssl-opt.sh requires it. +if (ENABLE_TESTING AND NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) + link_to_source(mbedtls) +endif() |