Raef Coles | df3f6ce | 2021-05-26 14:21:07 +0100 | [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 | if(NOT TEST_BL1_1) |
| 9 | return() |
| 10 | endif() |
| 11 | |
| 12 | |
| 13 | add_library(bl1_1_tests STATIC) |
| 14 | |
| 15 | target_sources(bl1_1_tests |
| 16 | PRIVATE |
| 17 | ./bl1_1_suites.c |
| 18 | ) |
| 19 | |
| 20 | target_include_directories(bl1_1_tests |
| 21 | PUBLIC |
| 22 | interface |
| 23 | ) |
| 24 | |
| 25 | target_link_libraries(bl1_1_tests |
| 26 | PRIVATE |
| 27 | tfm_test_framework_common |
| 28 | platform_bl1 |
| 29 | bl1_1_shared_lib |
| 30 | tfm_log |
| 31 | ) |