31 lines
852 B
CMake
31 lines
852 B
CMake
if(CONFIG_NET_L2_BT OR
|
|
CONFIG_NET_L2_BT_SHELL OR
|
|
CONFIG_NET_L2_DUMMY OR
|
|
CONFIG_NET_L2_WIFI_MGMT)
|
|
|
|
zephyr_library()
|
|
zephyr_library_include_directories(. ${ZEPHYR_BASE}/subsys/net/ip)
|
|
zephyr_library_compile_definitions_ifdef(
|
|
CONFIG_NEWLIB_LIBC __LINUX_ERRNO_EXTENSIONS__
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_NET_L2_BT bluetooth.c)
|
|
zephyr_library_sources_ifdef(CONFIG_NET_L2_BT_SHELL bluetooth_shell.c)
|
|
zephyr_library_sources_ifdef(CONFIG_NET_L2_DUMMY dummy.c)
|
|
zephyr_library_sources_ifdef(CONFIG_NET_L2_WIFI_MGMT wifi_mgmt.c)
|
|
zephyr_library_sources_ifdef(CONFIG_NET_L2_WIFI_SHELL wifi_shell.c)
|
|
|
|
endif()
|
|
|
|
if(CONFIG_NET_L2_ETHERNET)
|
|
add_subdirectory(ethernet)
|
|
endif()
|
|
|
|
if(CONFIG_NET_L2_IEEE802154)
|
|
add_subdirectory(ieee802154)
|
|
endif()
|
|
|
|
if(CONFIG_NET_L2_OPENTHREAD)
|
|
add_subdirectory(openthread)
|
|
endif()
|