mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			788 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			788 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| idf_build_get_property(target IDF_TARGET)
 | |
| 
 | |
| idf_component_register(SRCS "src/gdbstub.c" "src/packet.c"
 | |
|                        INCLUDE_DIRS "include"
 | |
|                        PRIV_INCLUDE_DIRS "private_include"
 | |
|                        LDFRAGMENTS "linker.lf"
 | |
|                        REQUIRES "freertos"
 | |
|                        PRIV_REQUIRES "soc" "esp_rom")
 | |
| 
 | |
| if(CONFIG_IDF_TARGET_ARCH_XTENSA)
 | |
|     target_include_directories(${COMPONENT_LIB} PUBLIC "xtensa" "${target}")
 | |
|     target_sources(${COMPONENT_LIB} PRIVATE "xtensa/gdbstub_xtensa.c" "${target}/gdbstub_${target}.c")
 | |
| elseif(CONFIG_IDF_TARGET_ARCH_RISCV)
 | |
|     target_include_directories(${COMPONENT_LIB} PUBLIC "riscv" "${target}")
 | |
|     target_sources(${COMPONENT_LIB} PRIVATE "riscv/gdbstub_riscv.c" "${target}/gdbstub_${target}.c")
 | |
| endif()
 | 
