2025-02-13 17:17:07 +08:00
|
|
|
list(APPEND incs ".")
|
|
|
|
|
list(APPEND incs "../components/system/include")
|
|
|
|
|
list(APPEND incs "../components/system/source")
|
|
|
|
|
list(APPEND incs "../components/system/source/k_kit")
|
|
|
|
|
list(APPEND incs "../components/system/source/shell")
|
|
|
|
|
|
2025-02-18 17:41:45 +08:00
|
|
|
list(APPEND srcs "app_main.c")
|
2025-02-21 10:30:22 +08:00
|
|
|
list(APPEND srcs "app_info.c")
|
2025-02-18 17:41:45 +08:00
|
|
|
list(APPEND srcs "console.c")
|
|
|
|
|
list(APPEND srcs "drivers/data_port/sb_data_port.c")
|
|
|
|
|
list(APPEND srcs "drivers/data_port/uart/uart_port.c")
|
2025-02-21 10:30:22 +08:00
|
|
|
list(APPEND srcs "drivers/ws2812_spi/ws2812_spi.c")
|
|
|
|
|
list(APPEND srcs "drivers/ws2812_spi/ws2812_spi_shell.c")
|
2025-02-18 17:41:45 +08:00
|
|
|
list(APPEND srcs "button/button.c")
|
|
|
|
|
list(APPEND srcs "button/multi_button.c")
|
|
|
|
|
list(APPEND srcs "config/board_config.c")
|
2025-02-21 10:30:22 +08:00
|
|
|
list(APPEND srcs "config/app_config.c")
|
|
|
|
|
list(APPEND srcs "utils/crc.c")
|
2025-02-13 17:17:07 +08:00
|
|
|
|
|
|
|
|
idf_component_register(
|
|
|
|
|
INCLUDE_DIRS ${incs}
|
|
|
|
|
SRCS ${srcs}
|
|
|
|
|
REQUIRES driver nvs_flash
|
|
|
|
|
)
|