blob: a843b41751c1591d6b525937b587f8a86e15a63a [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 ###########################################
David Hu87b46a82023-10-21 23:23:42 +08009
10add_library(tfm_log INTERFACE)
Kevin Pengaf602292020-10-20 17:49:52 +080011
Raef Colesb8f0c312021-05-26 14:17:37 +010012target_sources(tfm_log
David Hu87b46a82023-10-21 23:23:42 +080013 INTERFACE
Kevin Pengaf602292020-10-20 17:49:52 +080014 tfm_log_raw.c
15)
16
Anton Komlev84283b02023-08-16 10:57:56 +010017target_include_directories(tfm_log
David Hu87b46a82023-10-21 23:23:42 +080018 INTERFACE
19 .
Kevin Pengaf602292020-10-20 17:49:52 +080020)
21
Raef Colesb8f0c312021-05-26 14:17:37 +010022target_link_libraries(tfm_log
David Hu87b46a82023-10-21 23:23:42 +080023 INTERFACE
Anton Komlev94758d42023-06-15 16:39:36 +010024 platform_ns
Kevin Pengaf602292020-10-20 17:49:52 +080025)