blob: 3b5c86fba90d85c1e55896d91e3844d0136a848c [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
12
13add_library(bl1_1_tests STATIC)
14
15target_sources(bl1_1_tests
16 PRIVATE
17 ./bl1_1_suites.c
18)
19
20target_include_directories(bl1_1_tests
21 PUBLIC
22 interface
23)
24
25target_link_libraries(bl1_1_tests
26 PRIVATE
27 tfm_test_framework_common
28 platform_bl1
29 bl1_1_shared_lib
30 tfm_log
31)