blob: 36124353d1d392f0b0b3d1ec190543dc0297324d [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
Anton Komlev94758d42023-06-15 16:39:36 +010022 PUBLIC
23 platform_ns
Kevin Pengaf602292020-10-20 17:49:52 +080024)