2024-07-20 14:43:53 +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 specify the scope of include
# directories. That way, a target linking to a library (using the
# target_link_libraries command) inherits from the library PUBLIC include
# directories and not from the PRIVATE ones.
2024-07-20 14:56:49 +02:00
# - TF_PSA_CRYPTO_TARGET_PREFIX: CMake targets are designed to be alterable by
# calling CMake in order to avoid target name clashes, via the use of
# TF_PSA_CRYPTO_TARGET_PREFIX. The value of this variable is prefixed to the
# tfpsacrypto and apidoc targets.
2024-07-20 14:43:53 +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 )
include ( CMakePackageConfigHelpers )
# Include convenience functions for printing properties and variables, like
# cmake_print_properties(), cmake_print_variables().
include ( CMakePrintHelpers )
# 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 )
if ( TEST_CPP )
2024-07-20 14:56:49 +02:00
project ( "TF-PSA-Crypto"
2024-07-20 14:43:53 +02:00
L A N G U A G E S C C X X
2024-07-20 14:56:49 +02:00
V E R S I O N 0 . 1 . 0
2024-07-20 14:43:53 +02:00
)
else ( )
2024-07-20 14:56:49 +02:00
project ( "TF-PSA-Crypto"
2024-07-20 14:43:53 +02:00
L A N G U A G E S C
2024-07-20 14:56:49 +02:00
V E R S I O N 0 . 1 . 0
2024-07-20 14:43:53 +02:00
)
endif ( )
include ( GNUInstallDirs )
2024-07-20 14:56:49 +02:00
# Determine if TF-PSA-Crypto is being built as a subproject using add_subdirectory()
if ( NOT DEFINED TF_PSA_CRYPTO_AS_SUBPROJECT )
set ( TF_PSA_CRYPTO_AS_SUBPROJECT ON )
2024-07-20 14:43:53 +02:00
if ( CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR )
2024-07-20 14:56:49 +02:00
set ( TF_PSA_CRYPTO_AS_SUBPROJECT OFF )
2024-07-20 14:43:53 +02:00
endif ( )
endif ( )
2024-07-20 14:56:49 +02:00
# Set the project, Mbed TLS and framework root directory.
set ( TF_PSA_CRYPTO_DIR ${ CMAKE_CURRENT_SOURCE_DIR } )
set ( MBEDTLS_DIR ${ CMAKE_CURRENT_SOURCE_DIR } /.. )
set ( MBEDTLS_FRAMEWORK_DIR ${ CMAKE_CURRENT_SOURCE_DIR } /../framework )
2024-07-20 14:43:53 +02:00
2024-07-20 14:56:49 +02:00
option ( ENABLE_PROGRAMS "Build TF-PSA-Crypto programs." ON )
2024-07-20 14:43:53 +02:00
option ( UNSAFE_BUILD "Allow unsafe builds. These builds ARE NOT SECURE." OFF )
2024-07-20 14:56:49 +02:00
option ( TF_PSA_CRYPTO_FATAL_WARNINGS "Compiler warnings treated as errors" ON )
2024-07-20 14:43:53 +02:00
if ( CMAKE_HOST_WIN32 )
# 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.
option ( GEN_FILES "Generate the auto-generated files as needed" OFF ) # off in development
else ( )
option ( GEN_FILES "Generate the auto-generated files as needed" ON )
endif ( )
2024-07-30 10:50:39 +02:00
# Support for package config and install to be added later.
option ( DISABLE_PACKAGE_CONFIG_AND_INSTALL "Disable package configuration, target export and installation" ON )
2024-07-20 14:43:53 +02: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}" )
# the test suites currently have compile errors with MSVC
if ( CMAKE_COMPILER_IS_MSVC )
2024-07-20 14:56:49 +02:00
option ( ENABLE_TESTING "Build TF-PSA-Crypto tests." OFF )
2024-07-20 14:43:53 +02:00
else ( )
2024-07-20 14:56:49 +02:00
option ( ENABLE_TESTING "Build TF-PSA-Crypto tests." ON )
2024-07-20 14:43:53 +02:00
endif ( )
2024-07-20 14:56:49 +02:00
option ( USE_STATIC_TF_PSA_CRYPTO_LIBRARY "Build TF-PSA-Crypto static library." ON )
option ( USE_SHARED_TF_PSA_CRYPTO_LIBRARY "Build TF-PSA-Crypto shared library." OFF )
2024-07-20 14:43:53 +02:00
option ( LINK_WITH_PTHREAD "Explicitly link Mbed TLS library to pthread." OFF )
option ( LINK_WITH_TRUSTED_STORAGE "Explicitly link Mbed TLS library to trusted_storage." OFF )
2024-07-20 14:56:49 +02:00
set ( mbedcrypto_target "${TF_PSA_CRYPTO_TARGET_PREFIX}mbedcrypto" )
if ( USE_STATIC_TF_PSA_CRYPTO_LIBRARY )
2024-07-20 14:43:53 +02:00
set ( mbedcrypto_static_target ${ mbedcrypto_target } )
endif ( )
2024-07-20 14:56:49 +02:00
if ( USE_STATIC_TF_PSA_CRYPTO_LIBRARY AND USE_SHARED_TF_PSA_CRYPTO_LIBRARY )
2024-07-20 14:43:53 +02:00
string ( APPEND mbedcrypto_static_target "_static" )
endif ( )
# Warning string - created as a list for compatibility with CMake 2.8
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 } " )
# Python 3 is only needed here to check for configuration warnings.
if ( NOT CMAKE_VERSION VERSION_LESS 3.15.0 )
set ( Python3_FIND_STRATEGY LOCATION )
find_package ( Python3 COMPONENTS Interpreter )
if ( Python3_Interpreter_FOUND )
2024-07-20 14:56:49 +02:00
set ( TF_PSA_CRYPTO_PYTHON_EXECUTABLE ${ Python3_EXECUTABLE } )
2024-07-20 14:43:53 +02:00
endif ( )
else ( )
find_package ( PythonInterp 3 )
if ( PYTHONINTERP_FOUND )
2024-07-20 14:56:49 +02:00
set ( TF_PSA_CRYPTO_PYTHON_EXECUTABLE ${ PYTHON_EXECUTABLE } )
2024-07-20 14:43:53 +02:00
endif ( )
endif ( )
2024-07-20 14:56:49 +02:00
if ( TF_PSA_CRYPTO_PYTHON_EXECUTABLE )
2024-07-20 14:43:53 +02:00
# If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
2024-07-20 14:56:49 +02:00
execute_process ( COMMAND ${ TF_PSA_CRYPTO_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
2024-07-20 14:43:53 +02: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 ( )
endif ( )
# 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 )
# 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 }
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 "
F O R C E )
endif ( )
2024-07-20 14:56:49 +02:00
# Make TF_PSA_CRYPTO_CONFIG_FILE and TF_PSA_CRYPTO_USER_CONFIG_FILE into PATHs
set ( TF_PSA_CRYPTO_CONFIG_FILE "" CACHE FILEPATH "TF-PSA-Crypto config file (overrides default)." )
set ( TF_PSA_CRYPTO_USER_CONFIG_FILE "" CACHE FILEPATH "TF-PSA-Crypto user config file (appended to default)." )
2024-07-20 14:43:53 +02:00
# Create a symbolic link from ${base_name} in the binary directory
# to the corresponding path in the source directory.
# Note: Copies the file(s) on Windows.
function ( link_to_source base_name )
set ( link "${CMAKE_CURRENT_BINARY_DIR}/${base_name}" )
set ( target "${CMAKE_CURRENT_SOURCE_DIR}/${base_name}" )
# Linking to non-existent file is not desirable. At best you will have a
# dangling link, but when building in tree, this can create a symbolic link
# to itself.
if ( EXISTS ${ target } AND NOT EXISTS ${ link } )
if ( CMAKE_HOST_UNIX )
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 ( )
else ( )
if ( IS_DIRECTORY ${ target } )
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 )
else ( )
configure_file ( ${ target } ${ link } COPYONLY )
endif ( )
endif ( )
endif ( )
endfunction ( link_to_source )
# 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 )
include ( CheckCCompilerFlag )
set ( CMAKE_C_EXTENSIONS OFF )
set ( CMAKE_C_STANDARD 99 )
if ( CMAKE_COMPILER_IS_GNU )
# 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 )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings -Wmissing-prototypes" )
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 ( )
if ( GCC_VERSION VERSION_GREATER 4.3 OR GCC_VERSION VERSION_EQUAL 4.3 )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wvla" )
endif ( )
if ( GCC_VERSION VERSION_GREATER 4.5 OR GCC_VERSION VERSION_EQUAL 4.5 )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wlogical-op" )
endif ( )
if ( GCC_VERSION VERSION_GREATER 4.8 OR GCC_VERSION VERSION_EQUAL 4.8 )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow" )
endif ( )
if ( GCC_VERSION VERSION_GREATER 5.0 )
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 ( )
if ( GCC_VERSION VERSION_GREATER 7.0 OR GCC_VERSION VERSION_EQUAL 7.0 )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-overflow=2 -Wformat-truncation" )
endif ( )
set ( CMAKE_C_FLAGS_RELEASE "-O2" )
set ( CMAKE_C_FLAGS_DEBUG "-O0 -g3" )
set ( CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage" )
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_TSAN "-fsanitize=thread -O3" )
set ( CMAKE_C_FLAGS_TSANDBG "-fsanitize=thread -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls" )
set ( CMAKE_C_FLAGS_CHECK "-Os" )
set ( CMAKE_C_FLAGS_CHECKFULL "${CMAKE_C_FLAGS_CHECK} -Wcast-qual" )
endif ( CMAKE_COMPILER_IS_GNU )
if ( CMAKE_COMPILER_IS_CLANG )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wpointer-arith -Wimplicit-fallthrough -Wshadow -Wvla -Wformat=2 -Wno-format-nonliteral" )
set ( CMAKE_C_FLAGS_RELEASE "-O2" )
set ( CMAKE_C_FLAGS_DEBUG "-O0 -g3" )
set ( CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage" )
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_TSAN "-fsanitize=thread -O3" )
set ( CMAKE_C_FLAGS_TSANDBG "-fsanitize=thread -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sibling-calls" )
set ( CMAKE_C_FLAGS_CHECK "-Os" )
endif ( CMAKE_COMPILER_IS_CLANG )
if ( CMAKE_COMPILER_IS_IAR )
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" )
endif ( CMAKE_COMPILER_IS_IAR )
if ( CMAKE_COMPILER_IS_MSVC )
# Strictest warnings, UTF-8 source and execution charset
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3 /utf-8" )
endif ( CMAKE_COMPILER_IS_MSVC )
2024-07-20 14:56:49 +02:00
if ( TF_PSA_CRYPTO_FATAL_WARNINGS )
2024-07-20 14:43:53 +02:00
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" )
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 )
endif ( CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU )
if ( CMAKE_COMPILER_IS_IAR )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warnings_are_errors" )
endif ( CMAKE_COMPILER_IS_IAR )
2024-07-20 14:56:49 +02:00
endif ( TF_PSA_CRYPTO_FATAL_WARNINGS )
2024-07-20 14:43:53 +02: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 ( )
if ( CMAKE_BUILD_TYPE STREQUAL "Coverage" )
if ( CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG )
set ( CMAKE_SHARED_LINKER_FLAGS "--coverage" )
endif ( CMAKE_COMPILER_IS_GNU OR CMAKE_COMPILER_IS_CLANG )
endif ( CMAKE_BUILD_TYPE STREQUAL "Coverage" )
if ( LIB_INSTALL_DIR )
set ( CMAKE_INSTALL_LIBDIR "${LIB_INSTALL_DIR}" )
endif ( )
if ( NOT EXISTS "${MBEDTLS_FRAMEWORK_DIR}/CMakeLists.txt" )
message ( FATAL_ERROR "${MBEDTLS_FRAMEWORK_DIR}/CMakeLists.txt not found. Run `git submodule update --init` from the source tree to fetch the submodule contents." )
endif ( )
add_subdirectory ( include )
2024-07-29 19:06:40 +02:00
add_subdirectory ( core )
add_subdirectory ( drivers )
2024-07-20 14:43:53 +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
2024-07-20 14:56:49 +02:00
# against as they link against the tfpsacrypto library. The reason is that such
2024-07-20 15:02:50 +02:00
# library is expected to have mutual dependencies with the aforementioned
# library and that there is as of today no portable way of handling such
# dependencies (only toolchain specific solutions).
2024-07-20 14:43:53 +02:00
#
# 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.
#
if ( ENABLE_TESTING OR ENABLE_PROGRAMS )
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 )
add_library ( mbedtls_test OBJECT ${ MBEDTLS_TEST_FILES } )
if ( GEN_FILES )
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
2024-07-20 14:56:49 +02:00
" $ { T F _ P S A _ C R Y P T O _ P Y T H O N _ E X E C U T A B L E } "
2024-07-20 14:43:53 +02:00
" $ { M B E D T L S _ F R A M E W O R K _ D I R } / 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 "
" - - 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
$ { M B E D T L S _ F R A M E W O R K _ D I R } / 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
)
add_custom_target ( test_keys_header DEPENDS ${ CMAKE_CURRENT_SOURCE_DIR } /tests/src/test_keys.h )
2024-07-20 15:02:50 +02:00
2024-07-20 14:43:53 +02: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 _ 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
2024-07-20 14:56:49 +02:00
" $ { T F _ P S A _ C R Y P T O _ P Y T H O N _ E X E C U T A B L E } "
2024-07-20 14:43:53 +02:00
" $ { M B E D T L S _ F R A M E W O R K _ D I R } / 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 "
" - - 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
$ { M B E D T L S _ F R A M E W O R K _ D I R } / 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
)
add_custom_target ( test_certs_header DEPENDS ${ CMAKE_CURRENT_SOURCE_DIR } /tests/src/test_certs.h )
add_dependencies ( mbedtls_test test_keys_header test_certs_header )
endif ( )
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
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
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
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 )
# Request C11, needed for memory poisoning tests
set_target_properties ( mbedtls_test PROPERTIES C_STANDARD 11 )
2024-07-20 14:56:49 +02:00
# Pass-through TF_PSA_CRYPTO_CONFIG_FILE and TF_PSA_CRYPTO_USER_CONFIG_FILE
if ( TF_PSA_CRYPTO_CONFIG_FILE )
2024-07-20 14:43:53 +02:00
target_compile_definitions ( mbedtls_test
2024-07-20 14:56:49 +02:00
P U B L I C T F _ P S A _ C R Y P T O _ C O N F I G _ F I L E = " $ { T F _ P S A _ C R Y P T O _ C O N F I G _ F I L E } " )
2024-07-20 14:43:53 +02:00
endif ( )
2024-07-20 14:56:49 +02:00
if ( TF_PSA_CRYPTO_USER_CONFIG_FILE )
2024-07-20 14:43:53 +02:00
target_compile_definitions ( mbedtls_test
2024-07-20 14:56:49 +02:00
P U B L I C T F _ P S A _ C R Y P T O _ U S E R _ C O N F I G _ F I L E = " $ { T F _ P S A _ C R Y P T O _ U S E R _ C O N F I G _ F I L E } " )
2024-07-20 14:43:53 +02:00
endif ( )
endif ( )
if ( ENABLE_PROGRAMS )
add_subdirectory ( programs )
endif ( )
if ( ENABLE_TESTING )
enable_testing ( )
add_subdirectory ( tests )
# additional convenience targets for Unix only
if ( UNIX )
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 )
# 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 ( )
endif ( )