blob: 84501ae531d93a900c671d369f3559083df6c0f0 [file] [log] [blame]
Raef Colesdf3f6ce2021-05-26 14:21:07 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2021-2022, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8if(NOT TEST_BL1_1)
9 return()
10endif()
11
Raef Coles9e02e462021-06-09 14:13:11 +010012add_subdirectory(suites/crypto)
Raef Colesdf3f6ce2021-05-26 14:21:07 +010013
14add_library(bl1_1_tests STATIC)
15
16target_sources(bl1_1_tests
17 PRIVATE
18 ./bl1_1_suites.c
19)
20
21target_include_directories(bl1_1_tests
22 PUBLIC
23 interface
24)
25
26target_link_libraries(bl1_1_tests
27 PRIVATE
28 tfm_test_framework_common
29 platform_bl1
30 bl1_1_shared_lib
31 tfm_log
Raef Coles9e02e462021-06-09 14:13:11 +010032 bl1_1_test_suite_crypto
Raef Colesdf3f6ce2021-05-26 14:21:07 +010033)