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