Supporting configuration settings for include and warnings

This commit is contained in:
Eric Ratliff
2026-02-15 08:42:32 -06:00
parent 991b9a8ee9
commit 7b8ee2d186
2 changed files with 135 additions and 5 deletions

11
.arduino-build.conf Normal file
View File

@@ -0,0 +1,11 @@
# .arduino-build.conf -- Project-level build configuration
#
# Discovered by arduino-build.sh when it walks up from the sketch directory.
# All paths are relative to this file's location (the project root).
# Include paths -- each becomes a -I flag to the compiler
INCLUDE_DIRS="lib/hal lib/app"
EXTRA_BUILD_FLAGS="-Werror"
# Additional compiler flags (uncomment as needed)
# EXTRA_BUILD_FLAGS="-DDEBUG=1"