esp-idf/examples/common_components/led_strip/CMakeLists.txt

10 lines
290 B
CMake
Raw Normal View History

set(srcs "src/led_strip_api.c")
2022-05-07 10:59:34 -04:00
if(CONFIG_SOC_RMT_SUPPORTED)
list(APPEND srcs "src/led_strip_rmt_dev.c" "src/led_strip_rmt_encoder.c")
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS "include" "interface"
PRIV_REQUIRES "driver")