CMakeLists.txt 849 B

12345678910111213141516171819202122232425262728
  1. set(COMPONENT_SRCS "can.c"
  2. "gpio.c"
  3. "i2c.c"
  4. "i2s.c"
  5. "ledc.c"
  6. "mcpwm.c"
  7. "pcnt.c"
  8. "periph_ctrl.c"
  9. "rmt.c"
  10. "rtc_module.c"
  11. "sdio_slave.c"
  12. "sdmmc_host.c"
  13. "sdmmc_transaction.c"
  14. "sdspi_crc.c"
  15. "sdspi_host.c"
  16. "sdspi_transaction.c"
  17. "sigmadelta.c"
  18. "spi_common.c"
  19. "spi_master.c"
  20. "spi_slave.c"
  21. "timer.c"
  22. "uart.c")
  23. set(COMPONENT_ADD_INCLUDEDIRS "include")
  24. set(COMPONENT_PRIV_INCLUDEDIRS "include/driver")
  25. set(COMPONENT_REQUIRES esp_ringbuf)
  26. register_component()