Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2017-2020, Arm Limited. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | #Definitions to compile the "test" module. |
| 9 | #This file assumes it will be included from a project specific cmakefile, and |
| 10 | #will not create a library or executable. |
| 11 | #Inputs: |
| 12 | # TFM_ROOT_DIR - root directory of the TF-M repo. |
| 13 | # |
| 14 | #Outputs: |
| 15 | # Will modify include directories to make the source compile. |
| 16 | # ALL_SRC_C: C source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command. |
| 17 | # ALL_SRC_CXX: C++ source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command. |
| 18 | # ALL_SRC_ASM: assembly source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command. |
| 19 | # Include directories will be modified by using the include_directories() commands as needed. |
| 20 | |
| 21 | #Get the current directory where this file is located. |
| 22 | if(NOT DEFINED TFM_ROOT_DIR) |
| 23 | message(FATAL_ERROR "Please set TFM_ROOT_DIR before including this file.") |
| 24 | endif() |
| 25 | |
| 26 | if (NOT DEFINED ENABLE_AUDIT_LOGGING_SERVICE_TESTS) |
| 27 | message(FATAL_ERROR "Incomplete build configuration: ENABLE_AUDIT_LOGGING_SERVICE_TESTS is undefined.") |
| 28 | endif() |
| 29 | |
| 30 | if (NOT DEFINED ENABLE_PLATFORM_SERVICE_TESTS) |
| 31 | message(FATAL_ERROR "Incomplete build configuration: ENABLE_PLATFORM_SERVICE_TESTS is undefined.") |
| 32 | endif() |
| 33 | |
| 34 | embedded_include_directories(PATH ${TFM_ROOT_DIR}/secure_fw/spm ABSOLUTE) |
| 35 | embedded_include_directories(PATH ${TFM_ROOT_DIR}/bl2/include ABSOLUTE) |
Kevin Peng | ae997e4 | 2020-07-08 17:06:37 +0800 | [diff] [blame^] | 36 | embedded_include_directories(PATH ${TEST_DIR}/.. ABSOLUTE) |
Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 37 | |
| 38 | # Include the test framework |
| 39 | include(${CMAKE_CURRENT_LIST_DIR}/framework/CMakeLists.inc) |
| 40 | |
| 41 | # Include the test suites |
| 42 | include(${CMAKE_CURRENT_LIST_DIR}/suites/core/CMakeLists.inc) |
| 43 | include(${CMAKE_CURRENT_LIST_DIR}/suites/ps/CMakeLists.inc) |
| 44 | include(${CMAKE_CURRENT_LIST_DIR}/suites/its/CMakeLists.inc) |
| 45 | include(${CMAKE_CURRENT_LIST_DIR}/suites/crypto/CMakeLists.inc) |
| 46 | include(${CMAKE_CURRENT_LIST_DIR}/suites/attestation/CMakeLists.inc) |
| 47 | include(${CMAKE_CURRENT_LIST_DIR}/suites/qcbor/CMakeLists.inc) |
| 48 | include(${CMAKE_CURRENT_LIST_DIR}/suites/t_cose/CMakeLists.inc) |
| 49 | include(${CMAKE_CURRENT_LIST_DIR}/suites/ipc/CMakeLists.inc) |
| 50 | if (ENABLE_AUDIT_LOGGING_SERVICE_TESTS) |
| 51 | include(${CMAKE_CURRENT_LIST_DIR}/suites/audit/CMakeLists.inc) |
| 52 | endif() |
| 53 | if (ENABLE_PLATFORM_SERVICE_TESTS) |
| 54 | include(${CMAKE_CURRENT_LIST_DIR}/suites/platform/CMakeLists.inc) |
| 55 | endif() |
| 56 | if (TFM_MULTI_CORE_TEST) |
| 57 | include(${CMAKE_CURRENT_LIST_DIR}/suites/multi_core/CMakeLists.inc) |
| 58 | endif() |
| 59 | |
| 60 | # Include the test partitions |
| 61 | include(${CMAKE_CURRENT_LIST_DIR}/test_services/CMakeLists.inc) |