blob: e25920d83a112a64b9f633a107549ab1a7e378b7 [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 Pengd032b082023-07-10 16:04:14 +08009add_library(tfm_log STATIC)
Kevin Pengaf602292020-10-20 17:49:52 +080010
Raef Colesb8f0c312021-05-26 14:17:37 +010011target_sources(tfm_log
Kevin Pengd032b082023-07-10 16:04:14 +080012 PRIVATE
Kevin Pengaf602292020-10-20 17:49:52 +080013 tfm_log_raw.c
14)
15
Kevin Pengd032b082023-07-10 16:04:14 +080016target_include_directories(tfm_log
17 PUBLIC
Kevin Pengaf602292020-10-20 17:49:52 +080018 .
19)
20
Raef Colesb8f0c312021-05-26 14:17:37 +010021target_link_libraries(tfm_log
Kevin Pengd032b082023-07-10 16:04:14 +080022 PRIVATE
Raef Colesb8f0c312021-05-26 14:17:37 +010023 platform_common_interface
Kevin Pengaf602292020-10-20 17:49:52 +080024)