esp-idf/components/soc/esp32c3/CMakeLists.txt

20 lines
448 B
CMake
Raw Normal View History

set(srcs
"adc_periph.c"
2021-08-27 00:18:12 -04:00
"dedic_gpio_periph.c"
2020-12-09 07:29:26 -05:00
"gdma_periph.c"
"gpio_periph.c"
"interrupts.c"
"spi_periph.c"
"ledc_periph.c"
"rmt_periph.c"
"sigmadelta_periph.c"
"i2s_periph.c"
"i2c_periph.c"
"uart_periph.c"
"timer_periph.c")
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" "${srcs}")
target_sources(${COMPONENT_LIB} PRIVATE "${srcs}")
target_include_directories(${COMPONENT_LIB} PUBLIC . include)