zephyr/samples/sensor/sensor_shell/CMakeLists.txt
Torsten Rasmussen b5af13cbe8 samples/sensor/sensor_shell: removed deprecated set_conf_file
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>
2020-04-09 07:54:21 -05:00

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})