zephyr/subsys/net/l2/openthread/CMakeLists.txt
Robert Lubos 815ebc316e net: openthread: Move glue code into module directory
Move OpenThread's glue code along with the Kconfig files that configure
OpenThread stack itself into module directory.

Update the maintainers file to reflect this change.

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
2022-07-11 11:00:12 +02:00

15 lines
366 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library_named(subsys__net__ip__l2__openthread)
zephyr_library_include_directories(.
${ZEPHYR_BASE}/modules/openthread/platform
${ZEPHYR_BASE}/subsys/net/ip)
zephyr_library_compile_definitions_ifdef(
CONFIG_NEWLIB_LIBC __LINUX_ERRNO_EXTENSIONS__
)
zephyr_library_sources(
openthread.c
openthread_utils.c
)