Files
fail/debuggers/t32/CMakeLists.txt
Martin Hoffmann 3501050548 T32: FailT32 support for Cortex-M3
Currently working:
 - Connect/Disconnect, Read CPU info
 - CMM Script generation and T32 startup via cmake (make runt32)
 - Read/Write Register, Read Program Pointer
 - Read/Write Memory
 - Single Breakpoint
 - Setting Memory Breakpoint

TODO:
 - Fix mock aspect for T32_GetRam.
 - Fix Thumb2 bit in function addresses from ELFReader
 - Evaluate memory breakpoint hit
2013-03-01 12:47:32 +01:00

16 lines
515 B
CMake

# T32 remote specific configuration options
OPTION( T32_MOCK_API "Intercept remote calls to T32 for debugging" OFF)
set(T32_PORTNUM 20000 CACHE PATH "TCP Port number for remote access.")
set(T32_PACKLEN 1024 CACHE INTERNAL "TCP Packet size, max. 1024")
configure_file( include/t32config.hpp.in ${CMAKE_BINARY_DIR}/include/t32config.hpp)
include_directories(include ${CMAKE_BINARY_DIR}/include)
include_directories(${CMAKE_BINARY_DIR}/src/core)
add_subdirectory(api)
add_subdirectory(src)
add_subdirectory(cmm)