1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

LibCoreDump: Add library for parsing coredump files

This commit is contained in:
Itamar 2020-11-11 22:05:49 +02:00 committed by Andreas Kling
parent 50219429fd
commit a74dad14a8
4 changed files with 226 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
CoreDumpReader.cpp
)
serenity_lib(LibCoreDump coredump)
target_link_libraries(LibCoreDump LibC LibCore)