blob: a5165b92e713e3141d95d7069eb3137041fa1e68 [file] [log] [blame]
#-------------------------------------------------------------------------------
# SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------
cmake_minimum_required(VERSION 3.21)
add_library(tfm_log_unpriv_headers INTERFACE)
add_library(tfm_log_unpriv INTERFACE)
target_sources(tfm_log_unpriv
INTERFACE
src/tfm_log_unpriv.c
)
target_include_directories(tfm_log_unpriv_headers
INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/inc>
)
target_link_libraries(tfm_log_unpriv_headers
INTERFACE
tfm_vprintf_headers
)
target_link_libraries(tfm_log_unpriv
INTERFACE
tfm_log_unpriv_headers
)