2020-05-20 13:34:47 +00: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.
2021-12-21 05:14:10 +00:00
# + Use the PUBLIC and PRIVATE keywords to specify the scope of include
2020-05-20 13:34:47 +00:00
# directories. That way, a target linking to a library (using the
2022-05-17 23:30:44 +00:00
# target_link_libraries command) inherits from the library PUBLIC include
2020-05-20 13:34:47 +00:00
# directories and not from the PRIVATE ones.
2020-10-13 15:30:41 +00: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 13:34:47 +00:00
#
2021-06-04 16:04:20 +00: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 17:15:07 +00:00
2021-03-25 16:03:25 +00:00
include ( CMakePackageConfigHelpers )
2024-07-11 06:47:53 +00:00
# Include convenience functions for printing properties and variables, like
# cmake_print_properties(), cmake_print_variables().
include ( CMakePrintHelpers )
2020-09-18 17:15:07 +00: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 09:16:24 +00:00
if ( TEST_CPP )
2024-02-20 14:16:57 +00:00
project ( "Mbed TLS"
L A N G U A G E S C C X X
2024-09-03 16:36:30 +00:00
V E R S I O N 4 . 0 . 0
2024-02-20 14:16:57 +00:00
)
2018-03-15 09:16:24 +00:00
else ( )
2024-02-20 14:16:57 +00:00
project ( "Mbed TLS"
L A N G U A G E S C
2024-09-03 16:36:30 +00:00
V E R S I O N 4 . 0 . 0
2024-02-20 14:16:57 +00:00
)
2018-03-15 09:16:24 +00:00
endif ( )
2009-06-28 21:50:27 +00:00
2022-04-22 15:26:21 +00:00
include ( GNUInstallDirs )
2023-08-03 15:45:20 +00:00
# Determine if Mbed TLS is being built as a subproject using add_subdirectory()
2021-12-07 20:45:55 +00:00
if ( NOT DEFINED MBEDTLS_AS_SUBPROJECT )
set ( MBEDTLS_AS_SUBPROJECT ON )
if ( CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR )
set ( MBEDTLS_AS_SUBPROJECT OFF )
endif ( )
endif ( )
2019-04-29 08:35:06 +00:00
# Set the project root directory.
set ( MBEDTLS_DIR ${ CMAKE_CURRENT_SOURCE_DIR } )
2023-08-03 15:45:20 +00:00
option ( ENABLE_PROGRAMS "Build Mbed TLS programs." ON )
2015-07-09 08:19:47 +00:00
2016-06-21 09:14:00 +00:00
option ( UNSAFE_BUILD "Allow unsafe builds. These builds ARE NOT SECURE." OFF )
2020-04-03 07:42:37 +00:00
option ( MBEDTLS_FATAL_WARNINGS "Compiler warnings treated as errors" ON )
2022-04-14 14:22:11 +00:00
if ( CMAKE_HOST_WIN32 )
2023-09-09 20:54:26 +00:00
# N.B. The comment on the next line is significant! If you change it,
# edit the sed command in prepare_release.sh that modifies
# CMakeLists.txt.
2023-09-09 19:00:30 +00:00
option ( GEN_FILES "Generate the auto-generated files as needed" OFF ) # off in development
2021-10-21 18:45:52 +00:00
else ( )
2024-03-27 13:51:15 +00:00
option ( GEN_FILES "Generate the auto-generated files as needed" ON )
2021-10-21 18:45:52 +00:00
endif ( )
2015-07-09 08:19:47 +00:00
2021-12-07 20:45:55 +00:00
option ( DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and installation" ${ MBEDTLS_AS_SUBPROJECT } )
2023-10-18 14:15:58 +00:00
if ( CMAKE_C_SIMULATE_ID )
set ( COMPILER_ID ${ CMAKE_C_SIMULATE_ID } )
else ( )
set ( COMPILER_ID ${ CMAKE_C_COMPILER_ID } )
endif ( CMAKE_C_SIMULATE_ID )
string ( REGEX MATCH "Clang" CMAKE_COMPILER_IS_CLANG "${COMPILER_ID}" )
string ( REGEX MATCH "GNU" CMAKE_COMPILER_IS_GNU "${COMPILER_ID}" )
string ( REGEX MATCH "IAR" CMAKE_COMPILER_IS_IAR "${COMPILER_ID}" )
string ( REGEX MATCH "MSVC" CMAKE_COMPILER_IS_MSVC "${COMPILER_ID}" )
2018-05-23 15:55:16 +00:00
2015-07-09 08:19:47 +00:00
# the test suites currently have compile errors with MSVC
2018-05-23 15:55:16 +00:00
if ( CMAKE_COMPILER_IS_MSVC )
2023-08-03 15:45:20 +00:00
option ( ENABLE_TESTING "Build Mbed TLS tests." OFF )
2015-07-09 08:19:47 +00:00
else ( )
2023-08-03 15:45:20 +00:00
option ( ENABLE_TESTING "Build Mbed TLS tests." ON )
2015-07-09 08:19:47 +00:00
endif ( )
2015-07-08 21:10:38 +00:00
2016-06-21 13:47:11 +00:00
# Warning string - created as a list for compatibility with CMake 2.8
2018-08-29 07:20:12 +00: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}"
" $ { C T R _ D R B G _ 1 2 8 _ B I T _ K E Y _ W A R N _ L 1 } "
" $ { C T R _ D R B G _ 1 2 8 _ B I T _ K E Y _ W A R N _ L 2 } "
" $ { C T R _ D R B G _ 1 2 8 _ B I T _ K E Y _ W A R N _ L 3 } "
" $ { W A R N I N G _ B O R D E R } " )
2019-09-04 20:10:34 +00:00
# Python 3 is only needed here to check for configuration warnings.
2020-03-25 11:55:32 +00: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 09:14:00 +00:00
2018-08-29 07:20:12 +00:00
# If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
2021-05-28 07:42:25 +00: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 07:20:12 +00:00
R E S U L T _ V A R I A B L E r e s u l t )
if ( ${ result } EQUAL 0 )
message ( WARNING ${ CTR_DRBG_128_BIT_KEY_WARNING } )
endif ( )
2016-06-21 09:14:00 +00:00
endif ( )
2024-01-24 18:05:53 +00:00
# We now potentially need to link all executables against PThreads, if available
set ( CMAKE_THREAD_PREFER_PTHREAD TRUE )
set ( THREADS_PREFER_PTHREAD_FLAG TRUE )
find_package ( Threads )
2020-10-14 15:19:02 +00: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 }
2023-11-23 14:07:43 +00:00
C A C H E S T R I N G " C h o o s e t h e t y p e o f b u i l d : N o n e D e b u g R e l e a s e C o v e r a g e A S a n A S a n D b g M e m S a n M e m S a n D b g C h e c k C h e c k F u l l T S a n T S a n D b g "
2020-10-14 15:19:02 +00:00
F O R C E )
endif ( )
2015-07-08 21:10:38 +00:00
2023-02-15 14:44:25 +00:00
# Make MBEDTLS_CONFIG_FILE and MBEDTLS_USER_CONFIG_FILE into PATHs
set ( MBEDTLS_CONFIG_FILE "" CACHE FILEPATH "Mbed TLS config file (overrides default)." )
set ( MBEDTLS_USER_CONFIG_FILE "" CACHE FILEPATH "Mbed TLS user config file (appended to default)." )
2023-01-12 13:59:34 +00:00
2018-03-21 11:12:47 +00:00
# Create a symbolic link from ${base_name} in the binary directory
# to the corresponding path in the source directory.
2022-08-10 14:27:14 +00:00
# Note: Copies the file(s) on Windows.
2018-03-21 11:12:47 +00:00
function ( link_to_source base_name )
2022-08-10 14:27:14 +00:00
set ( link "${CMAKE_CURRENT_BINARY_DIR}/${base_name}" )
set ( target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}" )
2018-03-21 11:12:47 +00:00
2022-07-20 10:09:17 +00:00
# Linking to non-existent file is not desirable. At best you will have a
2022-07-12 13:55:01 +00:00
# dangling link, but when building in tree, this can create a symbolic link
# to itself.
if ( EXISTS ${ target } AND NOT EXISTS ${ link } )
2018-03-21 11:12:47 +00:00
if ( CMAKE_HOST_UNIX )
2022-08-10 14:27:14 +00:00
execute_process ( COMMAND ln -s ${ target } ${ link }
R E S U L T _ V A R I A B L E r e s u l t
E R R O R _ V A R I A B L E o u t p u t )
if ( NOT ${ result } EQUAL 0 )
message ( FATAL_ERROR "Could not create symbolic link for: ${target} --> ${output}" )
endif ( )
2018-03-21 11:12:47 +00:00
else ( )
2018-06-07 10:55:50 +00:00
if ( IS_DIRECTORY ${ target } )
2022-08-10 14:27:14 +00:00
file ( GLOB_RECURSE files FOLLOW_SYMLINKS LIST_DIRECTORIES false RELATIVE ${ target } "${target}/*" )
foreach ( file IN LISTS files )
configure_file ( "${target}/${file}" "${link}/${file}" COPYONLY )
endforeach ( file )
2018-06-07 10:55:50 +00:00
else ( )
2022-08-10 14:27:14 +00:00
configure_file ( ${ target } ${ link } COPYONLY )
2018-06-07 10:55:50 +00:00
endif ( )
2018-03-21 11:12:47 +00:00
endif ( )
endif ( )
endfunction ( link_to_source )
2021-10-19 17:37:04 +00:00
# Get the filename without the final extension (i.e. convert "a.b.c" to "a.b")
function ( get_name_without_last_ext dest_var full_name )
# Split into a list on '.' (but a cmake list is just a ';'-separated string)
string ( REPLACE "." ";" ext_parts "${full_name}" )
# Remove the last item if there are more than one
list ( LENGTH ext_parts ext_parts_len )
if ( ${ ext_parts_len } GREATER "1" )
math ( EXPR ext_parts_last_item "${ext_parts_len} - 1" )
list ( REMOVE_AT ext_parts ${ ext_parts_last_item } )
endif ( )
# Convert back to a string by replacing separators with '.'
string ( REPLACE ";" "." no_ext_name "${ext_parts}" )
# Copy into the desired variable
set ( ${ dest_var } ${ no_ext_name } PARENT_SCOPE )
endfunction ( get_name_without_last_ext )
2020-08-18 18:59:46 +00:00
include ( CheckCCompilerFlag )
2022-05-10 16:26:47 +00:00
set ( CMAKE_C_EXTENSIONS OFF )
2020-09-03 08:21:30 +00:00
set ( CMAKE_C_STANDARD 99 )
2018-05-23 15:55:16 +00:00
if ( CMAKE_COMPILER_IS_GNU )
2015-07-19 14:00:04 +00: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
O U T P U T _ V A R I A B L E G C C _ V E R S I O N )
2024-06-04 23:45:54 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings -Wmissing-prototypes" )
2020-12-09 14:34:47 +00: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 18:22:11 +00: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 14:00:04 +00: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 21:00:49 +00:00
if ( GCC_VERSION VERSION_GREATER 4.8 OR GCC_VERSION VERSION_EQUAL 4.8 )
2020-07-03 03:41:38 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow" )
endif ( )
if ( GCC_VERSION VERSION_GREATER 5.0 )
2020-08-18 18:59:46 +00: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 14:34:47 +00:00
if ( GCC_VERSION VERSION_GREATER 7.0 OR GCC_VERSION VERSION_EQUAL 7.0 )
2021-03-17 13:12:22 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-overflow=2 -Wformat-truncation" )
2020-12-09 14:34:47 +00:00
endif ( )
2015-06-25 07:20:03 +00: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 07:42:37 +00: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" )
2023-11-23 14:07:43 +00:00
set ( CMAKE_C_FLAGS_TSAN "-fsanitize=thread -O3" )
set ( CMAKE_C_FLAGS_TSANDBG "-fsanitize=thread -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls" )
2020-04-03 07:42:37 +00:00
set ( CMAKE_C_FLAGS_CHECK "-Os" )
2015-06-25 07:20:03 +00:00
set ( CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual" )
2018-05-23 15:55:16 +00:00
endif ( CMAKE_COMPILER_IS_GNU )
2013-11-28 16:20:04 +00:00
2013-12-30 16:56:23 +00:00
if ( CMAKE_COMPILER_IS_CLANG )
2024-06-04 23:45:54 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wpointer-arith -Wimplicit-fallthrough -Wshadow -Wvla -Wformat=2 -Wno-format-nonliteral" )
2015-06-25 07:20:03 +00: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 07:42:37 +00: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" )
2023-11-23 14:07:43 +00:00
set ( CMAKE_C_FLAGS_TSAN "-fsanitize=thread -O3" )
set ( CMAKE_C_FLAGS_TSANDBG "-fsanitize=thread -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls" )
2020-04-03 07:42:37 +00:00
set ( CMAKE_C_FLAGS_CHECK "-Os" )
2013-12-30 16:56:23 +00:00
endif ( CMAKE_COMPILER_IS_CLANG )
2018-05-23 15:55:16 +00:00
if ( CMAKE_COMPILER_IS_IAR )
2020-04-16 11:53:38 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warn_about_c_style_casts" )
set ( CMAKE_C_FLAGS_RELEASE "-Ohz" )
set ( CMAKE_C_FLAGS_DEBUG "--debug -On" )
2018-05-23 15:55:16 +00:00
endif ( CMAKE_COMPILER_IS_IAR )
if ( CMAKE_COMPILER_IS_MSVC )
2021-12-27 21:41:21 +00:00
# Strictest warnings, UTF-8 source and execution charset
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3 /utf-8" )
2018-05-23 15:55:16 +00:00
endif ( CMAKE_COMPILER_IS_MSVC )
2015-07-01 15:06:28 +00:00
2020-04-03 07:42:37 +00: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 20:15:01 +00: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 07:42:37 +00:00
endif ( CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU )
2022-06-17 10:06:30 +00:00
if ( CMAKE_COMPILER_IS_IAR )
2023-05-26 13:57:37 +00:00
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warnings_are_errors" )
2022-06-17 10:06:30 +00:00
endif ( CMAKE_COMPILER_IS_IAR )
2020-04-03 07:42:37 +00:00
endif ( MBEDTLS_FATAL_WARNINGS )
2024-06-06 20:12:06 +00:00
if ( CMAKE_BUILD_TYPE STREQUAL "Check" AND TEST_CPP )
set ( CMAKE_CXX_STANDARD 11 )
set ( CMAKE_CXX_STANDARD_REQUIRED ON )
set ( CMAKE_CXX_EXTENSIONS OFF )
if ( CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic" )
endif ( )
endif ( )
2009-07-11 19:54:40 +00:00
if ( CMAKE_BUILD_TYPE STREQUAL "Coverage" )
2018-05-23 15:55:16 +00:00
if ( CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG )
2015-06-25 07:20:03 +00:00
set ( CMAKE_SHARED_LINKER_FLAGS "--coverage" )
2018-05-23 15:55:16 +00:00
endif ( CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG )
2009-07-11 19:54:40 +00:00
endif ( CMAKE_BUILD_TYPE STREQUAL "Coverage" )
2009-06-28 21:50:27 +00:00
2011-07-13 11:45:58 +00:00
if ( LIB_INSTALL_DIR )
2022-04-22 15:26:21 +00:00
set ( CMAKE_INSTALL_LIBDIR "${LIB_INSTALL_DIR}" )
2011-07-13 11:45:58 +00:00
endif ( )
2024-03-04 15:25:14 +00:00
if ( NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/framework/CMakeLists.txt" )
message ( FATAL_ERROR "${CMAKE_CURRENT_SOURCE_DIR}/framework/CMakeLists.txt not found. Run `git submodule update --init` from the source tree to fetch the submodule contents." )
endif ( )
2024-02-29 17:19:56 +00:00
add_subdirectory ( framework )
2019-04-08 16:00:34 +00:00
add_subdirectory ( include )
2024-07-01 16:33:24 +00:00
add_subdirectory ( tf-psa-crypto )
2019-01-21 17:26:19 +00:00
2009-06-28 21:50:27 +00:00
add_subdirectory ( library )
2011-07-27 16:52:28 +00:00
2024-01-09 19:10:05 +00:00
add_subdirectory ( pkgconfig )
2020-06-26 14:37:02 +00: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 09:27:26 +00:00
if ( ENABLE_TESTING OR ENABLE_PROGRAMS )
2022-10-28 03:49:33 +00:00
file ( GLOB MBEDTLS_TEST_FILES
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / * . c
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / d r i v e r s / * . c )
2024-04-15 07:11:28 +00:00
add_library ( mbedtls_test OBJECT ${ MBEDTLS_TEST_FILES } )
if ( GEN_FILES )
2024-05-10 13:23:16 +00:00
add_custom_command (
O U T P U T
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / t e s t _ k e y s . h
W O R K I N G _ D I R E C T O R Y
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s
C O M M A N D
" $ { M B E D T L S _ P Y T H O N _ E X E C U T A B L E } "
2024-05-29 16:57:08 +00:00
" $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / f r a m e w o r k / s c r i p t s / g e n e r a t e _ t e s t _ k e y s . p y "
2024-05-10 13:23:16 +00:00
" - - o u t p u t "
" $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / t e s t _ k e y s . h "
D E P E N D S
2024-05-29 16:57:08 +00:00
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / f r a m e w o r k / s c r i p t s / g e n e r a t e _ t e s t _ k e y s . p y
2024-05-10 13:23:16 +00:00
)
add_custom_target ( test_keys_header DEPENDS ${ CMAKE_CURRENT_SOURCE_DIR } /tests/src/test_keys.h )
add_custom_command (
O U T P U T
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / t e s t _ c e r t s . h
W O R K I N G _ D I R E C T O R Y
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s
C O M M A N D
" $ { M B E D T L S _ P Y T H O N _ E X E C U T A B L E } "
2024-05-29 16:57:08 +00:00
" $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / f r a m e w o r k / s c r i p t s / g e n e r a t e _ t e s t _ c e r t _ m a c r o s . p y "
2024-05-10 13:23:16 +00:00
" - - o u t p u t "
" $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / t e s t _ c e r t s . h "
D E P E N D S
2024-05-29 16:57:08 +00:00
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / f r a m e w o r k / s c r i p t s / g e n e r a t e _ t e s t _ c e r t _ m a c r o s . p y
2024-05-10 13:23:16 +00:00
)
add_custom_target ( test_certs_header DEPENDS ${ CMAKE_CURRENT_SOURCE_DIR } /tests/src/test_certs.h )
2024-04-15 07:11:28 +00:00
add_dependencies ( mbedtls_test test_keys_header test_certs_header )
endif ( )
2020-06-19 09:27:26 +00:00
target_include_directories ( mbedtls_test
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / i n c l u d e
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / i n c l u d e
2024-06-10 07:41:49 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / i n c l u d e
2024-06-14 06:43:28 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / d r i v e r s / b u i l t i n / i n c l u d e
2024-07-01 12:50:54 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / l i b r a r y
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / c o r e
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / d r i v e r s / b u i l t i n / s r c )
2024-01-17 12:25:19 +00:00
# Request C11, needed for memory poisoning tests
set_target_properties ( mbedtls_test PROPERTIES C_STANDARD 11 )
2022-10-28 03:49:33 +00:00
file ( GLOB MBEDTLS_TEST_HELPER_FILES
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / s r c / t e s t _ h e l p e r s / * . c )
add_library ( mbedtls_test_helpers OBJECT ${ MBEDTLS_TEST_HELPER_FILES } )
target_include_directories ( mbedtls_test_helpers
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t e s t s / i n c l u d e
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / i n c l u d e
2024-06-10 07:41:49 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / i n c l u d e
2024-06-14 06:43:28 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / d r i v e r s / b u i l t i n / i n c l u d e
2022-10-28 03:49:33 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / l i b r a r y
2024-07-01 12:50:54 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / c o r e
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / d r i v e r s / b u i l t i n / s r c
2024-07-01 16:33:24 +00:00
P R I V A T E $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / t f - p s a - c r y p t o / d r i v e r s / e v e r e s t / i n c l u d e )
2023-01-12 13:59:34 +00:00
# Pass-through MBEDTLS_CONFIG_FILE and MBEDTLS_USER_CONFIG_FILE
2023-02-15 14:44:25 +00:00
if ( MBEDTLS_CONFIG_FILE )
2023-01-12 13:59:34 +00:00
target_compile_definitions ( mbedtls_test
P U B L I C M B E D T L S _ C O N F I G _ F I L E = " $ { M B E D T L S _ C O N F I G _ F I L E } " )
target_compile_definitions ( mbedtls_test_helpers
P U B L I C M B E D T L S _ C O N F I G _ F I L E = " $ { M B E D T L S _ C O N F I G _ F I L E } " )
endif ( )
2023-02-15 14:44:25 +00:00
if ( MBEDTLS_USER_CONFIG_FILE )
2023-01-12 13:59:34 +00:00
target_compile_definitions ( mbedtls_test
P U B L I C M B E D T L S _ U S E R _ C O N F I G _ F I L E = " $ { M B E D T L S _ U S E R _ C O N F I G _ F I L E } " )
target_compile_definitions ( mbedtls_test_helpers
P U B L I C M B E D T L S _ U S E R _ C O N F I G _ F I L E = " $ { M B E D T L S _ U S E R _ C O N F I G _ F I L E } " )
endif ( )
2020-06-19 09:27:26 +00:00
endif ( )
2014-03-26 12:27:51 +00:00
if ( ENABLE_PROGRAMS )
2024-09-24 17:09:57 +00:00
set ( ssl_opt_target "${MBEDTLS_TARGET_PREFIX}ssl-opt" )
add_custom_target ( ${ ssl_opt_target } )
2015-06-25 07:20:03 +00:00
add_subdirectory ( programs )
2014-03-26 12:27:51 +00:00
endif ( )
2011-01-05 15:30:32 +00:00
2020-10-13 15:30:41 +00:00
ADD_CUSTOM_TARGET ( ${ MBEDTLS_TARGET_PREFIX } apidoc
2018-01-19 15:21:11 +00:00
C O M M A N D d o x y g e n m b e d t l s . d o x y f i l e
W O R K I N G _ D I R E C T O R Y $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / d o x y g e n )
2013-09-07 14:52:42 +00:00
2014-04-30 14:31:54 +00:00
if ( ENABLE_TESTING )
2015-07-01 14:59:56 +00:00
enable_testing ( )
add_subdirectory ( tests )
2024-07-09 14:14:36 +00:00
add_subdirectory ( tf-psa-crypto/tests )
2015-07-01 14:59:56 +00:00
# additional convenience targets for Unix only
if ( UNIX )
2022-12-08 21:18:31 +00:00
# For coverage testing:
# 1. Build with:
# cmake -D CMAKE_BUILD_TYPE=Coverage /path/to/source && make
# 2. Run the relevant tests for the part of the code you're interested in.
# For the reference coverage measurement, see
# tests/scripts/basic-build-test.sh
# 3. Run scripts/lcov.sh to generate an HTML report.
2015-07-01 14:59:56 +00:00
ADD_CUSTOM_TARGET ( lcov
2022-11-30 16:52:01 +00:00
C O M M A N D s c r i p t s / l c o v . s h
2015-07-01 14:59:56 +00:00
)
ADD_CUSTOM_TARGET ( memcheck
C O M M A N D s e d - i . b a k s + / u s r / b i n / v a l g r i n d + ` w h i c h v a l g r i n d ` + D a r t C o n f i g u r a t i o n . t c l
C O M M A N D c t e s t - O m e m c h e c k . l o g - D E x p e r i m e n t a l M e m C h e c k
C O M M A N D t a i l - n 1 m e m c h e c k . l o g | g r e p ' M e m o r y c h e c k i n g r e s u l t s : ' > / d e v / n u l l
C O M M A N D r m - f m e m c h e c k . l o g
C O M M A N D m v D a r t C o n f i g u r a t i o n . t c l . b a k D a r t C o n f i g u r a t i o n . t c l
)
endif ( UNIX )
2018-03-21 11:12:47 +00:00
2019-04-28 05:51:37 +00: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
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / D a r t C o n f i g u r a t i o n . t c l C O P Y O N L Y )
endif ( )
2018-03-21 11:12:47 +00:00
endif ( )
2021-03-25 16:03:25 +00:00
2021-12-07 20:45:55 +00:00
if ( NOT DISABLE_PACKAGE_CONFIG_AND_INSTALL )
configure_package_config_file (
" c m a k e / M b e d T L S C o n f i g . c m a k e . i n "
" c m a k e / M b e d T L S C o n f i g . c m a k e "
I N S T A L L _ D E S T I N A T I O N " c m a k e " )
write_basic_package_version_file (
" c m a k e / M b e d T L S C o n f i g V e r s i o n . c m a k e "
C O M P A T I B I L I T Y S a m e M a j o r V e r s i o n
2024-09-03 16:36:30 +00:00
V E R S I O N 4 . 0 . 0 )
2021-12-07 20:45:55 +00:00
install (
F I L E S " $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / c m a k e / M b e d T L S C o n f i g . c m a k e "
" $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / c m a k e / M b e d T L S C o n f i g V e r s i o n . c m a k e "
2022-11-19 18:34:01 +00:00
D E S T I N A T I O N " $ { C M A K E _ I N S T A L L _ L I B D I R } / c m a k e / M b e d T L S " )
2021-12-07 20:45:55 +00:00
export (
E X P O R T M b e d T L S T a r g e t s
N A M E S P A C E M b e d T L S : :
F I L E " c m a k e / M b e d T L S T a r g e t s . c m a k e " )
install (
E X P O R T M b e d T L S T a r g e t s
N A M E S P A C E M b e d T L S : :
2022-11-19 18:34:01 +00:00
D E S T I N A T I O N " $ { C M A K E _ I N S T A L L _ L I B D I R } / c m a k e / M b e d T L S "
2021-12-07 20:45:55 +00:00
F I L E " M b e d T L S T a r g e t s . c m a k e " )
if ( CMAKE_VERSION VERSION_GREATER 3.15 OR CMAKE_VERSION VERSION_EQUAL 3.15 )
# Do not export the package by default
cmake_policy ( SET CMP0090 NEW )
# Make this package visible to the system
export ( PACKAGE MbedTLS )
endif ( )
2021-03-25 16:03:25 +00:00
endif ( )