2020-05-20 15:34:47 +02:00
|
|
|
#
|
|
|
|
# CMake build system design considerations:
|
|
|
|
#
|
|
|
|
# - Include directories:
|
|
|
|
# + Do not define include directories globally using the include_directories
|
|
|
|
# command but rather at the target level using the
|
|
|
|
# target_include_directories command. That way, it is easier to guarantee
|
|
|
|
# that targets are built using the proper list of include directories.
|
|
|
|
# + Use the PUBLIC and PRIVATE keywords to specifiy the scope of include
|
|
|
|
# directories. That way, a target linking to a library (using the
|
|
|
|
# target_link_librairies command) inherits from the library PUBLIC include
|
|
|
|
# directories and not from the PRIVATE ones.
|
2020-10-13 17:30:41 +02:00
|
|
|
# - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling
|
|
|
|
# CMake in order to avoid target name clashes, via the use of
|
|
|
|
# MBEDTLS_TARGET_PREFIX. The value of this variable is prefixed to the
|
|
|
|
# mbedtls, mbedx509, mbedcrypto and apidoc targets.
|
2020-05-20 15:34:47 +02:00
|
|
|
#
|
|
|
|
|
2021-06-04 18:04:20 +02:00
|
|
|
# We specify a minimum requirement of 3.10.2, but for now use 3.5.1 here
|
|
|
|
# until our infrastructure catches up.
|
|
|
|
cmake_minimum_required(VERSION 3.5.1)
|
2020-09-18 19:15:07 +02:00
|
|
|
|
2021-03-25 17:03:25 +01:00
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
|
2020-09-18 19:15:07 +02:00
|
|
|
# https://cmake.org/cmake/help/latest/policy/CMP0011.html
|
|
|
|
# Setting this policy is required in CMake >= 3.18.0, otherwise a warning is generated. The OLD
|
|
|
|
# policy setting is deprecated, and will be removed in future versions.
|
|
|
|
cmake_policy(SET CMP0011 NEW)
|
|
|
|
# https://cmake.org/cmake/help/latest/policy/CMP0012.html
|
|
|
|
# Setting the CMP0012 policy to NEW is required for FindPython3 to work with CMake 3.18.2
|
|
|
|
# (there is a bug in this particular version), otherwise, setting the CMP0012 policy is required
|
|
|
|
# for CMake versions >= 3.18.3 otherwise a deprecated warning is generated. The OLD policy setting
|
|
|
|
# is deprecated and will be removed in future versions.
|
|
|
|
cmake_policy(SET CMP0012 NEW)
|
|
|
|
|
2018-03-15 10:16:24 +01:00
|
|
|
if(TEST_CPP)
|
2018-06-26 12:57:55 +02:00
|
|
|
project("mbed TLS" C CXX)
|
2018-03-15 10:16:24 +01:00
|
|
|
else()
|
2018-06-26 12:57:55 +02:00
|
|
|
project("mbed TLS" C)
|
2018-03-15 10:16:24 +01:00
|
|
|
endif()
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2019-04-29 10:35:06 +02:00
|
|
|
# Set the project root directory.
|
|
|
|
set(MBEDTLS_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
|
2015-07-08 23:10:38 +02:00
|
|
|
option(ENABLE_PROGRAMS "Build mbed TLS programs." ON)
|
2015-07-09 10:19:47 +02:00
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
option(UNSAFE_BUILD "Allow unsafe builds. These builds ARE NOT SECURE." OFF)
|
2020-04-03 09:42:37 +02:00
|
|
|
option(MBEDTLS_FATAL_WARNINGS "Compiler warnings treated as errors" ON)
|
2015-07-09 10:19:47 +02:00
|
|
|
|
2018-05-23 17:55:16 +02:00
|
|
|
string(REGEX MATCH "Clang" CMAKE_COMPILER_IS_CLANG "${CMAKE_C_COMPILER_ID}")
|
|
|
|
string(REGEX MATCH "GNU" CMAKE_COMPILER_IS_GNU "${CMAKE_C_COMPILER_ID}")
|
|
|
|
string(REGEX MATCH "IAR" CMAKE_COMPILER_IS_IAR "${CMAKE_C_COMPILER_ID}")
|
|
|
|
string(REGEX MATCH "MSVC" CMAKE_COMPILER_IS_MSVC "${CMAKE_C_COMPILER_ID}")
|
|
|
|
|
2015-07-09 10:19:47 +02:00
|
|
|
# the test suites currently have compile errors with MSVC
|
2018-05-23 17:55:16 +02:00
|
|
|
if(CMAKE_COMPILER_IS_MSVC)
|
2015-07-09 10:19:47 +02:00
|
|
|
option(ENABLE_TESTING "Build mbed TLS tests." OFF)
|
|
|
|
else()
|
|
|
|
option(ENABLE_TESTING "Build mbed TLS tests." ON)
|
|
|
|
endif()
|
2015-07-08 23:10:38 +02:00
|
|
|
|
2016-06-21 15:47:11 +02:00
|
|
|
# Warning string - created as a list for compatibility with CMake 2.8
|
2018-08-29 09:20:12 +02:00
|
|
|
set(CTR_DRBG_128_BIT_KEY_WARN_L1 "**** WARNING! MBEDTLS_CTR_DRBG_USE_128_BIT_KEY defined!\n")
|
|
|
|
set(CTR_DRBG_128_BIT_KEY_WARN_L2 "**** Using 128-bit keys for CTR_DRBG limits the security of generated\n")
|
|
|
|
set(CTR_DRBG_128_BIT_KEY_WARN_L3 "**** keys and operations that use random values generated to 128-bit security\n")
|
|
|
|
|
|
|
|
set(CTR_DRBG_128_BIT_KEY_WARNING "${WARNING_BORDER}"
|
|
|
|
"${CTR_DRBG_128_BIT_KEY_WARN_L1}"
|
|
|
|
"${CTR_DRBG_128_BIT_KEY_WARN_L2}"
|
|
|
|
"${CTR_DRBG_128_BIT_KEY_WARN_L3}"
|
|
|
|
"${WARNING_BORDER}")
|
|
|
|
|
2019-09-04 22:10:34 +02:00
|
|
|
# Python 3 is only needed here to check for configuration warnings.
|
2020-03-25 12:55:32 +01:00
|
|
|
if(NOT CMAKE_VERSION VERSION_LESS 3.15.0)
|
|
|
|
set(Python3_FIND_STRATEGY LOCATION)
|
|
|
|
find_package(Python3 COMPONENTS Interpreter)
|
|
|
|
if(Python3_Interpreter_FOUND)
|
|
|
|
set(MBEDTLS_PYTHON_EXECUTABLE ${Python3_EXECUTABLE})
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
find_package(PythonInterp 3)
|
|
|
|
if(PYTHONINTERP_FOUND)
|
|
|
|
set(MBEDTLS_PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(MBEDTLS_PYTHON_EXECUTABLE)
|
2016-06-21 11:14:00 +02:00
|
|
|
|
2018-08-29 09:20:12 +02:00
|
|
|
# If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
|
2021-05-28 09:42:25 +02:00
|
|
|
execute_process(COMMAND ${MBEDTLS_PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/config.py -f ${CMAKE_CURRENT_SOURCE_DIR}/include/mbedtls/mbedtls_config.h get MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
|
2018-08-29 09:20:12 +02:00
|
|
|
RESULT_VARIABLE result)
|
|
|
|
if(${result} EQUAL 0)
|
|
|
|
message(WARNING ${CTR_DRBG_128_BIT_KEY_WARNING})
|
|
|
|
endif()
|
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
endif()
|
|
|
|
|
2020-10-14 17:19:02 +02:00
|
|
|
# If this is the root project add longer list of available CMAKE_BUILD_TYPE values
|
|
|
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
|
|
|
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE}
|
|
|
|
CACHE STRING "Choose the type of build: None Debug Release Coverage ASan ASanDbg MemSan MemSanDbg Check CheckFull"
|
|
|
|
FORCE)
|
|
|
|
endif()
|
2015-07-08 23:10:38 +02:00
|
|
|
|
2018-03-21 12:12:47 +01:00
|
|
|
# Create a symbolic link from ${base_name} in the binary directory
|
|
|
|
# to the corresponding path in the source directory.
|
|
|
|
function(link_to_source base_name)
|
|
|
|
# Get OS dependent path to use in `execute_process`
|
2019-02-21 07:55:13 +01:00
|
|
|
if (CMAKE_HOST_WIN32)
|
|
|
|
#mklink is an internal command of cmd.exe it can only work with \
|
|
|
|
string(REPLACE "/" "\\" link "${CMAKE_CURRENT_BINARY_DIR}/${base_name}")
|
|
|
|
string(REPLACE "/" "\\" target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}")
|
|
|
|
else()
|
|
|
|
set(link "${CMAKE_CURRENT_BINARY_DIR}/${base_name}")
|
|
|
|
set(target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}")
|
|
|
|
endif()
|
2018-03-21 12:12:47 +01:00
|
|
|
|
|
|
|
if (NOT EXISTS ${link})
|
|
|
|
if (CMAKE_HOST_UNIX)
|
|
|
|
set(command ln -s ${target} ${link})
|
|
|
|
else()
|
2018-06-07 12:55:50 +02:00
|
|
|
if (IS_DIRECTORY ${target})
|
|
|
|
set(command cmd.exe /c mklink /j ${link} ${target})
|
|
|
|
else()
|
2018-06-08 11:07:32 +02:00
|
|
|
set(command cmd.exe /c mklink /h ${link} ${target})
|
2018-06-07 12:55:50 +02:00
|
|
|
endif()
|
2018-03-21 12:12:47 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
execute_process(COMMAND ${command}
|
|
|
|
RESULT_VARIABLE result
|
|
|
|
ERROR_VARIABLE output)
|
|
|
|
|
|
|
|
if (NOT ${result} EQUAL 0)
|
|
|
|
message(FATAL_ERROR "Could not create symbolic link for: ${target} --> ${output}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endfunction(link_to_source)
|
|
|
|
|
2014-04-24 02:40:25 +02:00
|
|
|
string(REGEX MATCH "Clang" CMAKE_COMPILER_IS_CLANG "${CMAKE_C_COMPILER_ID}")
|
2013-12-30 17:56:23 +01:00
|
|
|
|
2020-08-18 20:59:46 +02:00
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
|
2018-05-23 17:55:16 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNU)
|
2015-07-19 16:00:04 +02:00
|
|
|
# some warnings we want are not available with old GCC versions
|
|
|
|
# note: starting with CMake 2.8 we could use CMAKE_C_COMPILER_VERSION
|
|
|
|
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion
|
|
|
|
OUTPUT_VARIABLE GCC_VERSION)
|
2019-07-02 20:03:01 +02:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings")
|
2020-12-09 15:34:47 +01:00
|
|
|
if (GCC_VERSION VERSION_GREATER 3.0 OR GCC_VERSION VERSION_EQUAL 3.0)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat=2 -Wno-format-nonliteral")
|
|
|
|
endif()
|
2019-07-02 20:22:11 +02:00
|
|
|
if (GCC_VERSION VERSION_GREATER 4.3 OR GCC_VERSION VERSION_EQUAL 4.3)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wvla")
|
|
|
|
endif()
|
2015-07-19 16:00:04 +02:00
|
|
|
if (GCC_VERSION VERSION_GREATER 4.5 OR GCC_VERSION VERSION_EQUAL 4.5)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wlogical-op")
|
|
|
|
endif()
|
2015-08-27 23:00:49 +02:00
|
|
|
if (GCC_VERSION VERSION_GREATER 4.8 OR GCC_VERSION VERSION_EQUAL 4.8)
|
2020-07-03 05:41:38 +02:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow")
|
|
|
|
endif()
|
|
|
|
if (GCC_VERSION VERSION_GREATER 5.0)
|
2020-08-18 20:59:46 +02:00
|
|
|
CHECK_C_COMPILER_FLAG("-Wformat-signedness" C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS)
|
|
|
|
if(C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-signedness")
|
|
|
|
endif()
|
|
|
|
endif()
|
2020-12-09 15:34:47 +01:00
|
|
|
if (GCC_VERSION VERSION_GREATER 7.0 OR GCC_VERSION VERSION_EQUAL 7.0)
|
2021-03-17 14:12:22 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-overflow=2 -Wformat-truncation")
|
2020-12-09 15:34:47 +01:00
|
|
|
endif()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
2020-04-03 09:42:37 +02:00
|
|
|
set(CMAKE_C_FLAGS_ASAN "-fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover=all -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover=all -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls")
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Os")
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual")
|
2018-05-23 17:55:16 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_GNU)
|
2013-11-28 17:20:04 +01:00
|
|
|
|
2013-12-30 17:56:23 +01:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
2020-12-09 15:34:47 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings -Wpointer-arith -Wimplicit-fallthrough -Wshadow -Wvla -Wformat=2 -Wno-format-nonliteral")
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
|
|
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
2020-04-03 09:42:37 +02:00
|
|
|
set(CMAKE_C_FLAGS_ASAN "-fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover=all -O3")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "-fsanitize=address -fno-common -fsanitize=undefined -fno-sanitize-recover=all -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSAN "-fsanitize=memory -O3")
|
|
|
|
set(CMAKE_C_FLAGS_MEMSANDBG "-fsanitize=memory -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2")
|
|
|
|
set(CMAKE_C_FLAGS_CHECK "-Os")
|
2013-12-30 17:56:23 +01:00
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
|
2018-05-23 17:55:16 +02:00
|
|
|
if(CMAKE_COMPILER_IS_IAR)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warn_about_c_style_casts --warnings_are_errors -Ohz")
|
|
|
|
endif(CMAKE_COMPILER_IS_IAR)
|
|
|
|
|
|
|
|
if(CMAKE_COMPILER_IS_MSVC)
|
2020-04-03 09:42:37 +02:00
|
|
|
# Strictest warnings
|
2016-11-03 02:12:50 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3")
|
2018-05-23 17:55:16 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_MSVC)
|
2015-07-01 17:06:28 +02:00
|
|
|
|
2020-04-03 09:42:37 +02:00
|
|
|
if(MBEDTLS_FATAL_WARNINGS)
|
|
|
|
if(CMAKE_COMPILER_IS_MSVC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
|
|
|
|
endif(CMAKE_COMPILER_IS_MSVC)
|
|
|
|
|
|
|
|
if(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
|
2020-04-21 22:15:01 +02:00
|
|
|
if(UNSAFE_BUILD)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-error=cpp")
|
|
|
|
set(CMAKE_C_FLAGS_ASAN "${CMAKE_C_FLAGS_ASAN} -Wno-error=cpp")
|
|
|
|
set(CMAKE_C_FLAGS_ASANDBG "${CMAKE_C_FLAGS_ASANDBG} -Wno-error=cpp")
|
|
|
|
endif(UNSAFE_BUILD)
|
2020-04-03 09:42:37 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
|
|
|
endif(MBEDTLS_FATAL_WARNINGS)
|
|
|
|
|
2009-07-11 21:54:40 +02:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2018-05-23 17:55:16 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG)
|
2015-06-25 09:20:03 +02:00
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "--coverage")
|
2018-05-23 17:55:16 +02:00
|
|
|
endif(CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG)
|
2009-07-11 21:54:40 +02:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2011-07-13 13:45:58 +02:00
|
|
|
if(LIB_INSTALL_DIR)
|
|
|
|
else()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(LIB_INSTALL_DIR lib)
|
2011-07-13 13:45:58 +02:00
|
|
|
endif()
|
|
|
|
|
2019-04-08 18:00:34 +02:00
|
|
|
add_subdirectory(include)
|
|
|
|
|
2018-12-14 14:07:50 +01:00
|
|
|
add_subdirectory(3rdparty)
|
2019-01-21 18:26:19 +01:00
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
add_subdirectory(library)
|
2011-07-27 18:52:28 +02:00
|
|
|
|
2020-06-26 16:37:02 +02:00
|
|
|
#
|
|
|
|
# The C files in tests/src directory contain test code shared among test suites
|
|
|
|
# and programs. This shared test code is compiled and linked to test suites and
|
|
|
|
# programs objects as a set of compiled objects. The compiled objects are NOT
|
|
|
|
# built into a library that the test suite and program objects would link
|
|
|
|
# against as they link against the mbedcrypto, mbedx509 and mbedtls libraries.
|
|
|
|
# The reason is that such library is expected to have mutual dependencies with
|
|
|
|
# the aforementioned libraries and that there is as of today no portable way of
|
|
|
|
# handling such dependencies (only toolchain specific solutions).
|
|
|
|
#
|
|
|
|
# Thus the below definition of the `mbedtls_test` CMake library of objects
|
|
|
|
# target. This library of objects is used by tests and programs CMake files
|
|
|
|
# to define the test executables.
|
|
|
|
#
|
2020-06-19 11:27:26 +02:00
|
|
|
if(ENABLE_TESTING OR ENABLE_PROGRAMS)
|
2020-07-16 20:26:18 +02:00
|
|
|
file(GLOB MBEDTLS_TEST_FILES ${CMAKE_CURRENT_SOURCE_DIR}/tests/src/*.c ${CMAKE_CURRENT_SOURCE_DIR}/tests/src/drivers/*.c)
|
2020-06-19 11:27:26 +02:00
|
|
|
add_library(mbedtls_test OBJECT ${MBEDTLS_TEST_FILES})
|
|
|
|
target_include_directories(mbedtls_test
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/tests/include
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/library)
|
|
|
|
endif()
|
|
|
|
|
2014-03-26 13:27:51 +01:00
|
|
|
if(ENABLE_PROGRAMS)
|
2015-06-25 09:20:03 +02:00
|
|
|
add_subdirectory(programs)
|
2014-03-26 13:27:51 +01:00
|
|
|
endif()
|
2011-01-05 16:30:32 +01:00
|
|
|
|
2020-10-13 17:30:41 +02:00
|
|
|
ADD_CUSTOM_TARGET(${MBEDTLS_TARGET_PREFIX}apidoc
|
2018-01-19 16:21:11 +01:00
|
|
|
COMMAND doxygen mbedtls.doxyfile
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doxygen)
|
2013-09-07 16:52:42 +02:00
|
|
|
|
2014-04-30 16:31:54 +02:00
|
|
|
if(ENABLE_TESTING)
|
2015-07-01 16:59:56 +02:00
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
add_subdirectory(tests)
|
|
|
|
|
|
|
|
# additional convenience targets for Unix only
|
|
|
|
if(UNIX)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(covtest
|
|
|
|
COMMAND make test
|
|
|
|
COMMAND programs/test/selftest
|
2020-02-26 19:48:43 +01:00
|
|
|
COMMAND tests/compat.sh
|
|
|
|
COMMAND tests/ssl-opt.sh
|
2015-07-01 16:59:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(lcov
|
|
|
|
COMMAND rm -rf Coverage
|
|
|
|
COMMAND lcov --capture --initial --directory library/CMakeFiles/mbedtls.dir -o files.info
|
|
|
|
COMMAND lcov --capture --directory library/CMakeFiles/mbedtls.dir -o tests.info
|
|
|
|
COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
|
|
|
COMMAND lcov --remove all.info -o final.info '*.h'
|
|
|
|
COMMAND gendesc tests/Descriptions.txt -o descriptions
|
|
|
|
COMMAND genhtml --title "mbed TLS" --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
|
|
|
COMMAND rm -f files.info tests.info all.info final.info descriptions
|
|
|
|
)
|
|
|
|
|
|
|
|
ADD_CUSTOM_TARGET(memcheck
|
|
|
|
COMMAND sed -i.bak s+/usr/bin/valgrind+`which valgrind`+ DartConfiguration.tcl
|
|
|
|
COMMAND ctest -O memcheck.log -D ExperimentalMemCheck
|
|
|
|
COMMAND tail -n1 memcheck.log | grep 'Memory checking results:' > /dev/null
|
|
|
|
COMMAND rm -f memcheck.log
|
|
|
|
COMMAND mv DartConfiguration.tcl.bak DartConfiguration.tcl
|
|
|
|
)
|
|
|
|
endif(UNIX)
|
2018-03-21 12:12:47 +01:00
|
|
|
|
2019-04-28 07:51:37 +02:00
|
|
|
# Make scripts needed for testing available in an out-of-source build.
|
|
|
|
if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
link_to_source(scripts)
|
|
|
|
# Copy (don't link) DartConfiguration.tcl, needed for memcheck, to
|
|
|
|
# keep things simple with the sed commands in the memcheck target.
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/DartConfiguration.tcl
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/DartConfiguration.tcl COPYONLY)
|
|
|
|
endif()
|
2018-03-21 12:12:47 +01:00
|
|
|
endif()
|
2021-03-25 17:03:25 +01:00
|
|
|
|
|
|
|
configure_package_config_file(
|
|
|
|
"cmake/MbedTLSConfig.cmake.in"
|
|
|
|
"cmake/MbedTLSConfig.cmake"
|
|
|
|
INSTALL_DESTINATION "cmake")
|
|
|
|
|
|
|
|
write_basic_package_version_file(
|
|
|
|
"cmake/MbedTLSConfigVersion.cmake"
|
|
|
|
COMPATIBILITY SameMajorVersion
|
2021-07-01 10:20:13 +02:00
|
|
|
VERSION 3.0.0)
|
2021-03-25 17:03:25 +01:00
|
|
|
|
|
|
|
install(
|
|
|
|
FILES "${CMAKE_CURRENT_BINARY_DIR}/cmake/MbedTLSConfig.cmake"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake/MbedTLSConfigVersion.cmake"
|
|
|
|
DESTINATION "cmake")
|
|
|
|
|
|
|
|
export(
|
|
|
|
EXPORT MbedTLSTargets
|
|
|
|
NAMESPACE MbedTLS::
|
|
|
|
FILE "cmake/MbedTLSTargets.cmake")
|
|
|
|
|
|
|
|
install(
|
|
|
|
EXPORT MbedTLSTargets
|
|
|
|
NAMESPACE MbedTLS::
|
|
|
|
DESTINATION "cmake"
|
|
|
|
FILE "MbedTLSTargets.cmake")
|
|
|
|
|
2021-08-14 14:56:07 +02:00
|
|
|
if(CMAKE_VERSION VERSION_GREATER 3.15 OR CMAKE_VERSION VERSION_EQUAL 3.15)
|
2021-03-25 17:03:25 +01:00
|
|
|
# Do not export the package by default
|
|
|
|
cmake_policy(SET CMP0090 NEW)
|
|
|
|
|
|
|
|
# Make this package visible to the system
|
|
|
|
export(PACKAGE MbedTLS)
|
|
|
|
endif()
|