Disable HW acceleration to fix CI failures caused by -Werror triggered by prototype mismatches in the crypto accelerator path between TF-M and Mbed TLS. Signed-off-by: Sudan Landge <sudan.landge@arm.com>
16 lines
368 B
CMake
16 lines
368 B
CMake
#
|
|
# Copyright (c) 2019-2020 Linaro Limited
|
|
# Copyright 2026 Arm Limited and/or its affiliates <open-source-office@arm.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources(pinmux.c)
|
|
|
|
if(CONFIG_BUILD_WITH_TFM)
|
|
set_property(TARGET zephyr_property_target
|
|
APPEND PROPERTY TFM_CMAKE_OPTIONS -DCRYPTO_HW_ACCELERATOR=OFF
|
|
)
|
|
endif()
|