CMakeLists.txt 547 B

12345678910111213
  1. idf_build_get_property(target IDF_TARGET)
  2. set(esp_gdbstub_srcs "src/gdbstub.c"
  3. "src/packet.c"
  4. "${target}/gdbstub_${target}.c"
  5. "xtensa/gdbstub_xtensa.c")
  6. idf_component_register(SRCS "${esp_gdbstub_srcs}"
  7. INCLUDE_DIRS "include"
  8. PRIV_INCLUDE_DIRS "private_include" "${target}" "xtensa"
  9. LDFRAGMENTS "linker.lf"
  10. REQUIRES "freertos"
  11. PRIV_REQUIRES "soc" "xtensa" "esp_rom")