Raef Coles | 54940f0 | 2022-01-07 12:38:49 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2021-2022, Arm Limited. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | add_subdirectory(suites/integration) |
| 9 | |
| 10 | add_library(mcuboot_tests STATIC) |
| 11 | |
| 12 | target_sources(mcuboot_tests |
| 13 | PRIVATE |
| 14 | ./mcuboot_suites.c |
| 15 | ) |
| 16 | |
| 17 | target_include_directories(mcuboot_tests |
| 18 | PUBLIC |
| 19 | . |
| 20 | ) |
| 21 | |
| 22 | target_link_libraries(mcuboot_tests |
| 23 | PUBLIC |
| 24 | tfm_test_framework_common |
| 25 | PRIVATE |
| 26 | platform_bl2 |
| 27 | mcuboot_test_suite_integration |
| 28 | ) |