zephyr/tests/subsys/openthread/CMakeLists.txt
Marek Porwisz 673b1da46d tests: subsys: openthread: OpenThread radio interface tests
Currently there are no test for openthread on zephyr.
Created tests for OpenThread platform radio interface.

Signed-off-by: Marek Porwisz <marek.porwisz@nordicsemi.no>
2020-05-04 12:00:02 +02:00

17 lines
634 B
CMake

# Boilerplate code, which pulls in the Zephyr build system.
cmake_minimum_required(VERSION 3.13.1)
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(openthread_tests)
zephyr_library_include_directories(
${ZEPHYR_BASE}/../modules/lib/openthread/include/
${ZEPHYR_BASE}/../modules/lib/openthread/src/posix/platform/
${ZEPHYR_BASE}/subsys/net/lib/openthread/platform/
${ZEPHYR_BASE}/../modules/lib/openthread/examples/platforms/
)
# Add your source file to the "app" target. This must come after
# the boilerplate code, which defines the target.
target_sources(app PRIVATE radio_test.c radio_stub.c)