1# Boilerplate code, which pulls in the Zephyr build system.
2cmake_minimum_required(VERSION 3.20.0)
3find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
4
5project(openthread_tests)
6
7zephyr_library_include_directories(
8	${ZEPHYR_BASE}/../modules/lib/openthread/include/
9	${ZEPHYR_BASE}/../modules/lib/openthread/src/posix/platform/
10	${ZEPHYR_BASE}/modules/openthread/platform/
11	${ZEPHYR_BASE}/../modules/lib/openthread/examples/platforms/
12	)
13
14# Add your source file to the "app" target. This must come after
15# the boilerplate code, which defines the target.
16target_sources(app PRIVATE radio_test.c radio_stub.c)
17