Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
*.dylib
#*.dll

# ...but the committed debugger test binaries include shared libraries
!test/binaries/*/shared_lib.so
!test/binaries/*/shared_lib.dylib

# Fortran module files
*.mod
*.smod
Expand Down
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ if (NOT DEMO)
add_subdirectory(cli)
endif()

# Optionally build the debugger unit-test binaries alongside the debugger. This builds only the
# binaries the host toolchain can produce (no cross-compilation; assembly binaries are skipped when
# nasm is missing), so adding a new test no longer requires a separate build of the test binaries.
# The full, signed, multi-platform set is still produced by the debugger-test-binaries CI.
option(BUILD_DEBUGGER_TEST_BINARIES "Build the debugger unit-test binaries alongside the debugger" OFF)
if (BUILD_DEBUGGER_TEST_BINARIES)
add_subdirectory(test)
endif()

# WinDbg installer CLI (standalone, spawned by debuggercore API)
if(WIN32)
add_subdirectory(installer)
Expand Down
Loading