Julian Hall | 351a072 | 2023-01-12 11:58:42 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Imre Kis | efadd3a | 2024-06-28 14:15:57 +0200 | [diff] [blame] | 2 | # Copyright (c) 2023-2024, Arm Limited and Contributors. All rights reserved. |
Julian Hall | 351a072 | 2023-01-12 11:58:42 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | # Common components used for any deployment of the fwu service provider. |
| 7 | #------------------------------------------------------------------------------- |
| 8 | |
| 9 | #------------------------------------------------------------------------------- |
| 10 | # Components common to all deployments |
| 11 | # |
| 12 | #------------------------------------------------------------------------------- |
| 13 | add_components(TARGET "fwu" |
| 14 | BASE_DIR ${TS_ROOT} |
| 15 | COMPONENTS |
| 16 | "components/common/uuid" |
| 17 | "components/common/endian" |
| 18 | "components/media/disk/gpt_iterator" |
| 19 | "components/media/volume/index" |
| 20 | "components/service/common/include" |
| 21 | "components/service/fwu/agent" |
Imre Kis | efadd3a | 2024-06-28 14:15:57 +0200 | [diff] [blame] | 22 | "components/service/fwu/common" |
Julian Hall | 351a072 | 2023-01-12 11:58:42 +0000 | [diff] [blame] | 23 | "components/service/fwu/config" |
| 24 | "components/service/fwu/config/gpt" |
| 25 | "components/service/fwu/fw_store/banked" |
| 26 | "components/service/fwu/fw_store/banked/metadata_serializer/v1" |
| 27 | "components/service/fwu/fw_store/banked/metadata_serializer/v2" |
| 28 | "components/service/fwu/installer" |
| 29 | "components/service/fwu/installer/raw" |
| 30 | "components/service/fwu/installer/copy" |
| 31 | "components/service/fwu/installer/factory/default" |
| 32 | "components/service/fwu/inspector/direct" |
Gyorgy Szing | a167c93 | 2024-10-17 23:58:36 +0200 | [diff] [blame] | 33 | "components/service/log/factory" |
| 34 | "components/service/log/client" |
| 35 | "components/rpc/common/caller" |
| 36 | "components/rpc/ts_rpc/caller/sp" |
| 37 | "components/service/common/client" |
Julian Hall | 351a072 | 2023-01-12 11:58:42 +0000 | [diff] [blame] | 38 | ) |
| 39 | |
| 40 | ################################################################# |
| 41 | |
| 42 | target_include_directories(fwu PRIVATE |
| 43 | ${TS_ROOT} |
| 44 | ${TS_ROOT}/components |
| 45 | ) |