1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:38:10 +00:00
serenity/Userland/Services/SymbolServer/CMakeLists.txt
Andreas Kling a4e087e685 SymbolServer: Resolve filenames and line numbers from debug info :^)
This makes symbolication take a little longer the first time we load a
shared library, but then the cache keeps it warm.
2021-02-05 00:23:58 +01:00

12 lines
293 B
CMake

compile_ipc(SymbolServer.ipc SymbolServerEndpoint.h)
compile_ipc(SymbolClient.ipc SymbolClientEndpoint.h)
set(SOURCES
ClientConnection.cpp
main.cpp
SymbolServerEndpoint.h
SymbolClientEndpoint.h
)
serenity_bin(SymbolServer)
target_link_libraries(SymbolServer LibIPC LibDebug)