mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 23:02:41 +00:00
Move the net_buf implementation from the networking subsystem to a library as they have no dependency on the networking subsystem. Network buffers are used in subsystems outside of networking (e.g. Bluetooth, USB). Fixes: #36374 Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
9 lines
130 B
CMake
9 lines
130 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources_ifdef(
|
|
CONFIG_NET_BUF
|
|
buf.c
|
|
buf_simple.c
|
|
)
|