Files
cuberite-2a/lib/mbedtls.cmake
T

11 lines
402 B
CMake
Raw Normal View History

2017-09-19 10:34:08 +02:00
2015-05-03 10:01:19 +02:00
# This script includes PolarSSL, if not already included.
# It is needed for when multiple projects reference PolarSSL.
if(NOT TARGET mbedtls)
2017-08-30 15:00:06 +01:00
message("including mbedtls")
set(ENABLE_TESTING OFF CACHE BOOL "Disable tests")
set(ENABLE_PROGRAMS OFF CACHE BOOL "Disable programs")
2017-08-30 15:00:06 +01:00
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/mbedtls/ ${CMAKE_CURRENT_BINARY_DIR}/lib/mbedtls EXCLUDE_FROM_ALL)
2014-02-16 04:39:41 -08:00
endif()