Files
wombus_led/src/CMakeLists.txt
2026-02-11 22:31:03 -06:00

15 lines
218 B
CMake

file(GLOB SRC_FILES
"*.c"
"*.cpp"
"drivers/*.c"
)
idf_component_register(
SRCS ${SRC_FILES}
PRIV_REQUIRES spi_flash
REQUIRES esp_driver_gpio
REQUIRES esp_driver_spi
INCLUDE_DIRS "."
)