summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatt Hunter <m@lfurio.us>2025-09-07 06:43:22 -0400
committerMatt Hunter <m@lfurio.us>2025-09-07 06:43:22 -0400
commit1001499baec9e8d6fb25c641b2a0577ccd419d6f (patch)
tree91bd8d29e34b2780a57e85623988be40babe2c85 /CMakeLists.txt
parent3b03d95a22a99df7d84647179a86f8c7f534868a (diff)
parentb2d6f5a4c75e8f68cb27edad38455375b500323b (diff)
downloadmisplays-1001499baec9e8d6fb25c641b2a0577ccd419d6f.tar.gz
misplays-1001499baec9e8d6fb25c641b2a0577ccd419d6f.zip
Merge branch 'arm32'
Add initial 32-bit ARM support and additionally build out internal breakpoint design to allow the use of single-step oriented breakpoints. * arm32: Always prune step breakpoints when uninstalling from memory Update detect_breakpoint() to better handle single stepping Add architecture-specific single step support Add 32-bit ARM architecture params
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f35b859..cc098fd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,7 +13,10 @@ add_compile_definitions(
_GNU_SOURCE
)
+include_directories(${CMAKE_SOURCE_DIR})
+
add_executable(${PROJECT_NAME}
+ arch/arm-singlestep.c
architecture.c
console.c
debugger.c