blob: 2ac6cebd6ad233f7d9b983760c94398e034ce670 [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 ###########################################
Anton Komlev94758d42023-06-15 16:39:36 +01009add_library(tfm_log STATIC)
Kevin Pengf4b19102023-07-14 15:16:14 +080010add_library(tfm_log_interface INTERFACE)
Kevin Pengaf602292020-10-20 17:49:52 +080011
Raef Colesb8f0c312021-05-26 14:17:37 +010012target_sources(tfm_log
Anton Komlev94758d42023-06-15 16:39:36 +010013 PRIVATE
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
Anton Komlev94758d42023-06-15 16:39:36 +010026 PUBLIC
27 platform_ns
Kevin Pengaf602292020-10-20 17:49:52 +080028)