mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:38:10 +00:00

This makes symbolication take a little longer the first time we load a shared library, but then the cache keeps it warm.
12 lines
293 B
CMake
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)
|