1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
5zephyr_library_compile_definitions_ifdef(
6  CONFIG_NEWLIB_LIBC __LINUX_ERRNO_EXTENSIONS__
7  )
8
9zephyr_library_sources_ifdef(CONFIG_NET_L2_BT       bluetooth.c)
10zephyr_library_sources_ifdef(CONFIG_NET_L2_BT_SHELL bluetooth_shell.c)
11