Files
wombus_led/src/CMakeLists.txt

14 lines
190 B
CMake

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