1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library_named(subsys__net__ip__l2__openthread)
4zephyr_library_include_directories(.
5  ${ZEPHYR_BASE}/modules/openthread/platform
6  ${ZEPHYR_BASE}/subsys/net/ip)
7zephyr_library_compile_definitions_ifdef(
8  CONFIG_NEWLIB_LIBC __LINUX_ERRNO_EXTENSIONS__
9  )
10
11zephyr_library_sources(
12  openthread.c
13  openthread_utils.c
14  )
15