8 lines
143 B
CMake
8 lines
143 B
CMake
|
add_library(DEBUG
|
||
|
debugger.c
|
||
|
memory_view.c
|
||
|
dialog.c)
|
||
|
|
||
|
find_package(Curses)
|
||
|
|
||
|
target_link_libraries(DEBUG Curses::Curses)
|