1#
2# SPDX-License-Identifier: BSD-3-Clause
3# SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4#
5
6# List of libraries that are included in the app stub library
7set(RMM_EL2_STUB_LIBRARIES "")
8
9add_subdirectory("common")
10
11# List of apps to be packaged to final binary
12# The contents of the list is populated by the CMakeLists in the subdirectories
13set(EL0_APP_BIN_LIST "")
14
15add_subdirectory("attestation")
16add_subdirectory("device_assignment")
17add_subdirectory("random")
18
19set(EL0_APP_BIN_LIST ${EL0_APP_BIN_LIST} PARENT_SCOPE)
20
21add_library(rmm-el2-stub INTERFACE)
22target_link_libraries(rmm-el2-stub
23    INTERFACE ${RMM_EL2_STUB_LIBRARIES})
24