diff options
author | xengineering <me@xengineering.eu> | 2024-04-14 17:13:52 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-04-14 17:13:52 +0200 |
commit | c852c3e4047b0a31910bf89436d620281a508029 (patch) | |
tree | f02e1b1f403cc262db100abbd9a283a9eeff6974 /firmware/CMakeLists.txt | |
parent | f950daa67777b79037cf545111d4348cfeba3c0e (diff) | |
download | iot-contact-c852c3e4047b0a31910bf89436d620281a508029.tar iot-contact-c852c3e4047b0a31910bf89436d620281a508029.tar.zst iot-contact-c852c3e4047b0a31910bf89436d620281a508029.zip |
fw: Add basic Zephyr application firmware
This is enough to validate that the firmware is running by using the
integrated Zephyr shell.
Diffstat (limited to 'firmware/CMakeLists.txt')
-rw-r--r-- | firmware/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/CMakeLists.txt b/firmware/CMakeLists.txt new file mode 100644 index 0000000..c520b2b --- /dev/null +++ b/firmware/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.20.0) +find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) +project(iot-contact) + +target_sources(app PRIVATE src/main.c) |