blob: 101c94d54413469cbd1b11f92cdbb80fbe74a672 [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 Pengaf602292020-10-20 17:49:52 +080010
Raef Colesb8f0c312021-05-26 14:17:37 +010011target_sources(tfm_log
Anton Komlev94758d42023-06-15 16:39:36 +010012 PRIVATE
Kevin Pengaf602292020-10-20 17:49:52 +080013 tfm_log_raw.c
14)
15
Anton Komlev84283b02023-08-16 10:57:56 +010016target_include_directories(tfm_log
17 PUBLIC
18 ${CMAKE_CURRENT_SOURCE_DIR}
Kevin Pengaf602292020-10-20 17:49:52 +080019)
20
Raef Colesb8f0c312021-05-26 14:17:37 +010021target_link_libraries(tfm_log
Kevin Pengf4b19102023-07-14 15:16:14 +080022 INTERFACE
Raef Colesb8f0c312021-05-26 14:17:37 +010023 platform_common_interface
Anton Komlev94758d42023-06-15 16:39:36 +010024 PUBLIC
25 platform_ns
Kevin Pengaf602292020-10-20 17:49:52 +080026)