file(GLOB_RECURSE SOURCE_FILES Source/*.c)

idf_component_register(
    SRCS ${SOURCE_FILES}
    REQUIRES TactilitySDK
)

# Relax format-truncation: buffers sized generously, warnings are noise here
# and other apps (BookPlayer etc.) use same pattern.
target_compile_options(${COMPONENT_LIB} PRIVATE
    -Wno-format-truncation
    -Wno-unused-but-set-variable
)
