Vita3K/vita3k/gdbstub/CMakeLists.txt

11 lines
261 B
CMake

add_library(
gdbstub
STATIC
include/gdbstub/functions.h
include/gdbstub/state.h
src/gdb.cpp
)
target_include_directories(gdbstub PUBLIC include)
target_link_libraries(gdbstub PUBLIC cpu emuenv)
target_link_libraries(gdbstub PRIVATE kernel)