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 | ||||
Mate Toth-Pal | c83c305 | 2025-02-06 10:32:10 +0100 | [diff] [blame] | 9 | INTERFACE rmm-lib-arch |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 10 | rmm-lib-common |
Soby Mathew | dcedbdc | 2024-02-26 14:07:25 +0000 | [diff] [blame] | 11 | rmm-lib-console |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 12 | rmm-lib-debug |
13 | rmm-lib-gic | ||||
Javier Almansa Sobrino | 2f717dd | 2024-02-12 20:49:46 +0000 | [diff] [blame] | 14 | rmm-lib-granule |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 15 | rmm-lib-rmm_el3_ifc |
16 | rmm-lib-smc | ||||
Javier Almansa Sobrino | 2eb98b0 | 2023-12-18 18:10:55 +0000 | [diff] [blame] | 17 | rmm-lib-s2tt |
Javier Almansa Sobrino | 2f717dd | 2024-02-12 20:49:46 +0000 | [diff] [blame] | 18 | rmm-lib-slot_buf |
Jacob Man Chun Yiu | f1b6d04 | 2025-02-17 16:47:06 +0000 | [diff] [blame] | 19 | rmm-lib-stack_protector |
Mate Toth-Pal | e971694 | 2024-11-21 13:42:20 +0100 | [diff] [blame] | 20 | rmm-lib-xlat) |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 21 | |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 22 | add_subdirectory("arch") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 23 | add_subdirectory("common") |
Soby Mathew | dcedbdc | 2024-02-26 14:07:25 +0000 | [diff] [blame] | 24 | add_subdirectory("console") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 25 | add_subdirectory("debug") |
26 | add_subdirectory("gic") | ||||
Javier Almansa Sobrino | 2f717dd | 2024-02-12 20:49:46 +0000 | [diff] [blame] | 27 | add_subdirectory("granule") |
Soby Mathew | 73dad84 | 2022-12-16 12:51:01 +0000 | [diff] [blame] | 28 | add_subdirectory("mbedtls") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 29 | add_subdirectory("rmm_el3_ifc") |
AlexeiFedorov | eaec0c4 | 2023-02-01 18:13:32 +0000 | [diff] [blame] | 30 | add_subdirectory("smc") |
Javier Almansa Sobrino | 2eb98b0 | 2023-12-18 18:10:55 +0000 | [diff] [blame] | 31 | add_subdirectory("s2tt") |
Javier Almansa Sobrino | 2f717dd | 2024-02-12 20:49:46 +0000 | [diff] [blame] | 32 | add_subdirectory("slot_buf") |
Jacob Man Chun Yiu | f1b6d04 | 2025-02-17 16:47:06 +0000 | [diff] [blame] | 33 | add_subdirectory("stack_protector") |
Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 34 | add_subdirectory("xlat") |