1set(srcs 2 "adc_periph.c" 3 "dac_periph.c" 4 "gpio_periph.c" 5 "i2c_periph.c" 6 "i2s_periph.c" 7 "interrupts.c" 8 "lcd_periph.c" 9 "ledc_periph.c" 10 "mcpwm_periph.c" 11 "pcnt_periph.c" 12 "rmt_periph.c" 13 "rtc_io_periph.c" 14 "sdio_slave_periph.c" 15 "sdmmc_periph.c" 16 "sigmadelta_periph.c" 17 "spi_periph.c" 18 "timer_periph.c" 19 "touch_sensor_periph.c" 20 "uart_periph.c") 21 22add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" "${srcs}") 23 24target_sources(${COMPONENT_LIB} PRIVATE "${srcs}") 25target_include_directories(${COMPONENT_LIB} PUBLIC . include) 26