nesemu/debugger/CMakeLists.txt

10 lines
189 B
CMake
Raw Normal View History

2024-01-07 16:20:37 -05:00
add_library(DEBUG
debugger.c
memory_view.c
2024-01-11 16:02:53 -05:00
dialog.c
program_view.c
program_view.h)
2024-01-07 16:20:37 -05:00
find_package(Curses)
target_link_libraries(DEBUG Curses::Curses)