# Copyright (c) 2026 iscatek
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.20.0)

# The DevKit2 (mbdk2) board definition is bundled with this application
# (see boards/iscatek/mbdk2). Because this build uses sysbuild, the board
# is resolved before this file is processed, so BOARD_ROOT must be passed
# on the command line rather than set here -- see the README.
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(mbdk2_demo)

target_sources(app PRIVATE
	src/main.c
	src/sensor.c
	src/storage.c
	src/leds.c
	src/network.c
)
