1#-------------------------------------------------------------------------------
2# Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#-------------------------------------------------------------------------------
6
7target_sources(${TGT} PRIVATE
8	"${CMAKE_CURRENT_LIST_DIR}/malloc_wrapper.c"
9)
10
11# TODO: remove workaround
12set_source_files_properties(
13	"${CMAKE_CURRENT_LIST_DIR}/malloc_wrapper.c" PROPERTIES COMPILE_FLAGS
14	"-fno-builtin"
15)
16