CMakeLists.txt 204 B

123456789
  1. set(srcs "ulp.c"
  2. "ulp_macro.c")
  3. if(CONFIG_ESP32S2_ULP_COPROC_RISCV)
  4. list(APPEND srcs "ulp_riscv.c")
  5. endif()
  6. idf_component_register(SRCS ${srcs}
  7. INCLUDE_DIRS include)