2026-06-06 17:54:20 +01:00
|
|
|
file(GLOB sources
|
|
|
|
|
*.c *.h
|
|
|
|
|
info/*.c
|
|
|
|
|
line-ed/*.c
|
|
|
|
|
line-ed/*.h)
|
|
|
|
|
|
|
|
|
|
add_executable(mxdbg ${sources})
|
|
|
|
|
|
2026-06-07 13:47:03 +01:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
2026-06-06 17:54:20 +01:00
|
|
|
target_link_libraries(mxdbg
|
|
|
|
|
magenta_debug
|
2026-06-07 13:47:03 +01:00
|
|
|
Threads::Threads
|
2026-06-06 17:54:20 +01:00
|
|
|
FX::Runtime FX::Collections FX::Term FX::Cmdline)
|