ipc_service: Move libraries in a stalone directory
The IPC libraries will be used by several backends. Move the libraries out in a new 'lib' directory. Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
parent
ba85663a42
commit
f141565b85
5 changed files with 5 additions and 5 deletions
|
@ -3,3 +3,4 @@
|
|||
zephyr_sources(ipc_service.c)
|
||||
|
||||
add_subdirectory(backends)
|
||||
add_subdirectory(lib)
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
# libraries
|
||||
zephyr_sources_ifdef(CONFIG_IPC_SERVICE_RPMSG ipc_rpmsg.c)
|
||||
zephyr_sources_ifdef(CONFIG_IPC_SERVICE_STATIC_VRINGS ipc_static_vrings.c)
|
||||
|
||||
# backends
|
||||
zephyr_sources_ifdef(CONFIG_IPC_SERVICE_BACKEND_RPMSG_MI ipc_rpmsg_static_vrings_mi.c)
|
||||
|
|
4
subsys/ipc/ipc_service/lib/CMakeLists.txt
Normal file
4
subsys/ipc/ipc_service/lib/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
zephyr_sources_ifdef(CONFIG_IPC_SERVICE_RPMSG ipc_rpmsg.c)
|
||||
zephyr_sources_ifdef(CONFIG_IPC_SERVICE_STATIC_VRINGS ipc_static_vrings.c)
|
Loading…
Add table
Add a link
Reference in a new issue