Sets up kvida-os as a freestanding nRF Connect SDK application for the nRF54L15, pinned to NCS v3.4.0, with a Docker/WSL2 build environment (toolchain-only image, NCS modules fetched into a separate volume at first run) and placeholder module directories matching the architecture described in the kvida meta-repo. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
12 lines
429 B
CMake
12 lines
429 B
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(kvida_os)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|
|
|
|
# Module directories under src/ (hal, gpio_manager, power_manager,
|
|
# matter_manager, ota, config_manager, sensor_profiles, rule_engine) are
|
|
# currently placeholders with no source files. Add add_subdirectory()
|
|
# calls for each once it gains a CMakeLists.txt and real sources.
|