1#------------------------------------------------------------------------------- 2# Copyright (c) 2020-2023, Arm Limited. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6#------------------------------------------------------------------------------- 7 8cmake_minimum_required(VERSION 3.21) 9 10include(${CMAKE_CURRENT_LIST_DIR}/tfm_t_cose.cmake) 11 12############################ t_cose secure ##################################### 13 14add_library(tfm_t_cose_s STATIC EXCLUDE_FROM_ALL) 15 16target_link_libraries(tfm_t_cose_s 17 PUBLIC 18 tfm_t_cose_common 19 tfm_t_cose_defs 20 psa_interface 21 qcbor 22 platform_s 23) 24 25target_compile_options(tfm_t_cose_s 26 PUBLIC 27 ${COMPILER_CP_FLAG} 28) 29