b5af13cbe8
The samples/sensor/sensor_shell sample was introduced after deprecation of set_conf_file and thus was not adopted to the new recommended board conf file overlay. This commit align this sample with the rest of Zephyr's samples. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
10 lines
220 B
CMake
10 lines
220 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.8.2)
|
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(sensor_shell)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|