1# 2# SPDX-License-Identifier: BSD-3-Clause 3# SPDX-FileCopyrightText: Copyright TF-RMM Contributors. 4# 5 6add_library(rmm-lib-allocator) 7 8target_link_libraries(rmm-lib-allocator 9 PRIVATE 10 rmm-lib-arch 11 rmm-lib-common 12 rmm-lib-debug 13 rmm-lib-libc 14 rmm-lib-rmm_el3_ifc 15 MbedTLS::Crypto 16 t_cose) 17 18target_include_directories(rmm-lib-allocator 19 PUBLIC "include") 20 21target_sources(rmm-lib-allocator 22 PRIVATE "src/memory_alloc.c") 23