blob: ab20dad869a4673df4299746f1975b60b32070c0 [file] [log] [blame]
#-------------------------------------------------------------------------------
# Copyright (c) 2020-2021, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------
if(NOT TFM_PARTITION_INITIAL_ATTESTATION)
return()
endif()
cmake_policy(SET CMP0079 NEW)
####################### Non Secure #############################################
add_library(tfm_test_suite_qcbor_ns STATIC EXCLUDE_FROM_ALL)
target_sources(tfm_test_suite_qcbor_ns
PRIVATE
non_secure/qcbor_ns_testsuite.c
)
target_include_directories(tfm_test_suite_qcbor_ns
PUBLIC
non_secure
)
target_compile_definitions(tfm_test_suite_qcbor_ns
PRIVATE
DOMAIN_NS=1
)
target_link_libraries(tfm_test_suite_qcbor_ns
PRIVATE
tfm_test_framework_ns
tfm_qcbor_test
)
target_link_libraries(tfm_ns_tests
INTERFACE
tfm_test_suite_qcbor_ns
)