Forked from
Eclipse Projects / Eclipse Oniro Blueprints / Transparent Gateway / Openthread Node Zephyr
3 commits behind, 4 commits ahead of the upstream repository.
-
Stefan Schmidt authored
THis is based on the EUI64 from the device. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
Stefan Schmidt authoredTHis is based on the EUI64 from the device. Signed-off-by:
Stefan Schmidt <stefan.schmidt@huawei.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 312 B
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(openthread_node)
target_include_directories(
app
PRIVATE
${ZEPHYR_BASE}/subsys/net/ip
)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})