zephyr/subsys/net/CMakeLists.txt
Georges Oates_Larsen 98a506f341 net: conn_mgr: Write documentation
Write documentation for conn_mgr and its subsystems, especially
guidelines for writing connectivity implementations

Signed-off-by: Georges Oates_Larsen <georges.larsen@nordicsemi.no>
2023-09-28 15:11:14 +02:00

27 lines
490 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources_ifdef(
CONFIG_NET_BUF
buf.c
buf_simple.c
)
zephyr_library_sources_ifdef(CONFIG_NET_HOSTNAME_ENABLE hostname.c)
if(CONFIG_NETWORKING)
add_subdirectory(l2)
add_subdirectory(pkt_filter)
if(CONFIG_NET_RAW_MODE)
zephyr_library_sources(ip/net_pkt.c)
else()
add_subdirectory(ip)
endif()
endif()
add_subdirectory(lib)
if(CONFIG_NET_CONNECTION_MANAGER)
add_subdirectory(conn_mgr)
endif()