zephyr/samples/subsys/lorawan/class_a/CMakeLists.txt
Anas Nashif bcec7029fd samples: move lorawan to subsys/lorawan
lorawan has its own susbsystem, so move this sample under subsys/
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2021-03-09 17:48:18 -05:00

10 lines
225 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(lorawan)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})