CMakeLists.txt 277 B

123456789
  1. if(IDF_TARGET STREQUAL "esp32s2")
  2. idf_component_register(SRCS "touch_element.c"
  3. "touch_button.c"
  4. "touch_slider.c"
  5. "touch_matrix.c"
  6. INCLUDE_DIRS include
  7. REQUIRES driver
  8. PRIV_REQUIRES esp_timer)
  9. endif()