Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: BSD-3-Clause |
| 3 | # SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | # |
| 5 | |
| 6 | add_library(rmm-lib INTERFACE) |
| 7 | |
| 8 | target_link_libraries(rmm-lib |
| 9 | INTERFACE rmm-lib-allocator |
| 10 | rmm-lib-arch |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 11 | rmm-lib-attestation |
| 12 | rmm-lib-common |
| 13 | rmm-lib-debug |
| 14 | rmm-lib-gic |
| 15 | rmm-lib-measurement |
| 16 | rmm-lib-realm |
| 17 | rmm-lib-rmm_el3_ifc |
| 18 | rmm-lib-smc |
Javier Almansa Sobrino | 2eb98b0 | 2023-12-18 18:10:55 +0000 | [diff] [blame] | 19 | rmm-lib-s2tt |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 20 | rmm-lib-timers |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 21 | rmm-lib-xlat |
| 22 | t_cose) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 23 | |
| 24 | add_subdirectory("allocator") |
| 25 | add_subdirectory("arch") |
| 26 | add_subdirectory("attestation") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 27 | add_subdirectory("common") |
| 28 | add_subdirectory("debug") |
| 29 | add_subdirectory("gic") |
Soby Mathew | 73dad84 | 2022-12-16 12:51:01 +0000 | [diff] [blame] | 30 | add_subdirectory("mbedtls") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 31 | add_subdirectory("measurement") |
Soby Mathew | 372484a | 2023-04-20 14:40:52 +0100 | [diff] [blame] | 32 | add_subdirectory("qcbor") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 33 | add_subdirectory("realm") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 34 | add_subdirectory("rmm_el3_ifc") |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 35 | add_subdirectory("smc") |
Javier Almansa Sobrino | 2eb98b0 | 2023-12-18 18:10:55 +0000 | [diff] [blame] | 36 | add_subdirectory("s2tt") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 37 | add_subdirectory("t_cose") |
| 38 | add_subdirectory("timers") |
| 39 | add_subdirectory("xlat") |