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)
