15 lines
243 B
CMake
15 lines
243 B
CMake
file(GLOB sources
|
|
*.c *.h
|
|
info/*.c
|
|
line-ed/*.c
|
|
line-ed/*.h)
|
|
|
|
add_executable(mxdbg ${sources})
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
target_link_libraries(mxdbg
|
|
magenta_debug
|
|
Threads::Threads
|
|
FX::Runtime FX::Collections FX::Term FX::Cmdline)
|