Base directory structure, lib module

This commit is contained in:
2026-01-01 21:52:59 +01:00
parent cb4a34ae2b
commit c058c006b7
12 changed files with 254 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.20)
# Zephyr mitteilen, dass unsere Libs Teil des Projekts sind
list(APPEND ZEPHYR_EXTRA_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/../../libs)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(lasertag_weapon)
target_sources(app PRIVATE src/main.c)

View File

@@ -0,0 +1 @@
CONFIG_LASERTAG_UTILS=y