esp-idf/components/esp_gdbstub/CMakeLists.txt

16 wiersze
644 B
CMake
Czysty Zwykły widok Historia

idf_build_get_property(target IDF_TARGET)
2021-04-15 07:52:09 +00:00
set(esp_gdbstub_srcs "src/gdbstub.c"
"src/packet.c"
"esp_common/gdbstub_common.c"
"${target}/gdbstub_${target}.c"
"xtensa/gdbstub-entry.S"
"xtensa/gdbstub_xtensa.c")
idf_component_register(SRCS "${esp_gdbstub_srcs}"
INCLUDE_DIRS "include"
2021-04-15 07:52:09 +00:00
PRIV_INCLUDE_DIRS "private_include" "${target}" "xtensa"
LDFRAGMENTS "linker.lf"
REQUIRES "freertos"
2021-04-15 07:52:09 +00:00
PRIV_REQUIRES "soc" "xtensa" "esp_rom")