1# Copyright (c) 2021 Nordic Semiconductor (ASA) 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig IPC_SERVICE 5 bool "IPC service support multiple backends" 6 help 7 Enables support for a service that can be shared by multiple 8 users. Ability to work in different backends. The backend 9 should be registered before application starts using 10 the IPC Service. 11 12if IPC_SERVICE 13 14rsource "backends/Kconfig" 15rsource "lib/Kconfig" 16 17module = IPC_SERVICE 18module-str = IPC service and backend 19source "subsys/logging/Kconfig.template.log_config" 20 21endif # IPC_SERVICE 22