Fixes: #24158 The shell/fs sample was using APPLICATION_SOURCE_DIR before it has been defined. This has now been fixed to use the proper way of overlaying board specific settings using boards folder. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
10 lines
217 B
CMake
10 lines
217 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(fs_shell)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|