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

LibSymbolClient: Add helper library for interfacing with SymbolServer

This commit is contained in:
Andreas Kling 2021-02-04 19:59:56 +01:00
parent aefd206038
commit 5249aa2ba5
4 changed files with 132 additions and 0 deletions

View file

@ -0,0 +1,11 @@
set(SOURCES
Client.cpp
)
set(GENERATED_SOURCES
../../Services/SymbolServer/SymbolClientEndpoint.h
../../Services/SymbolServer/SymbolServerEndpoint.h
)
serenity_lib(LibSymbolClient symbolclient)
target_link_libraries(LibSymbolClient LibIPC)