Add GPIO app and update CI (#5)

This commit is contained in:
Ken Van Hoeylandt
2025-10-05 18:43:35 +02:00
committed by GitHub
parent b6cd11221e
commit 37c5002c5d
13 changed files with 1004 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
file(GLOB_RECURSE SOURCE_FILES
Source/*.c*
# Library source files must be included directly,
# because all regular dependencies get stripped by elf_loader's cmake script
../../../Libraries/Str/Source/*.c**
)
idf_component_register(
SRCS ${SOURCE_FILES}
# Library headers must be included directly,
# because all regular dependencies get stripped by elf_loader's cmake script
INCLUDE_DIRS ../../../Libraries/Str/Include
REQUIRES TactilitySDK
)