b2b0901c0d
The DTC_OVERLAY_FILE variable is specified on the command line. It's not preferable to set it in CMakeLists.txt. The app.overlay file is used as the default overlay file, so use it. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
10 lines
224 B
CMake
10 lines
224 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(ens210)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|