4d30949a4d
the debug library can be used by both server (the kernel) and client (the debugger) applications. the library implements the protocol that is used for communication between the kernel and debugger, as well as handling for any requests supported by the protocol.
5 lines
184 B
CMake
5 lines
184 B
CMake
file(GLOB sources *.c *.h include/magenta/debug/*.h)
|
|
|
|
add_library(magenta_debug STATIC ${sources})
|
|
target_include_directories(magenta_debug PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
|