CMakeLists.txt 344 B

1234567891011
  1. set(srcs)
  2. set(public_include "include")
  3. if(CONFIG_SOC_PCNT_SUPPORTED)
  4. list(APPEND srcs "src/pulse_cnt.c")
  5. endif()
  6. idf_component_register(SRCS ${srcs}
  7. INCLUDE_DIRS ${public_include}
  8. PRIV_REQUIRES "esp_pm" "esp_driver_gpio"
  9. LDFRAGMENTS "linker.lf"
  10. )