#------------------------------------------------------------------------------- # Copyright (c) 2020-2022, Arm Limited. All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause # #------------------------------------------------------------------------------- cmake_minimum_required(VERSION 3.15) add_library(tfm_fih_headers INTERFACE) add_library(tfm_fih STATIC) target_sources(tfm_fih PRIVATE src/fih.c ) target_include_directories(tfm_fih_headers INTERFACE $ ) target_link_libraries(tfm_fih PUBLIC tfm_fih_headers platform_common_interface ) target_compile_definitions(tfm_fih_headers INTERFACE TFM_FIH_PROFILE_${TFM_FIH_PROFILE} $<$>:TFM_FIH_PROFILE_ON> ) target_compile_options(tfm_fih_headers INTERFACE $<$:-Wno-unused-value> )