blob: 9860934d180296aaabc84e9c1de1a1d902ad8b54 [file] [log] [blame]
Kevin Pengaf602292020-10-20 17:49:52 +08001#-------------------------------------------------------------------------------
Raef Colesb8f0c312021-05-26 14:17:37 +01002# Copyright (c) 2020-2022, Arm Limited. All rights reserved.
Kevin Pengaf602292020-10-20 17:49:52 +08003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
Kevin Pengaf602292020-10-20 17:49:52 +08008############################# Ns Log ###########################################
Kevin Pengf4b19102023-07-14 15:16:14 +08009add_library(tfm_log INTERFACE)
10add_library(tfm_log_interface INTERFACE)
Kevin Pengaf602292020-10-20 17:49:52 +080011
Raef Colesb8f0c312021-05-26 14:17:37 +010012target_sources(tfm_log
Kevin Pengf4b19102023-07-14 15:16:14 +080013 INTERFACE
Kevin Pengaf602292020-10-20 17:49:52 +080014 tfm_log_raw.c
15)
16
Kevin Pengf4b19102023-07-14 15:16:14 +080017target_include_directories(tfm_log_interface
18 INTERFACE
Kevin Pengaf602292020-10-20 17:49:52 +080019 .
20)
21
Raef Colesb8f0c312021-05-26 14:17:37 +010022target_link_libraries(tfm_log
Kevin Pengf4b19102023-07-14 15:16:14 +080023 INTERFACE
24 tfm_log_interface
Raef Colesb8f0c312021-05-26 14:17:37 +010025 platform_common_interface
Kevin Pengaf602292020-10-20 17:49:52 +080026)