1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 09:55:08 +00:00
serenity/Userland/Libraries/LibIPC/CMakeLists.txt
Andreas Kling f3c4a357ea LibIPC: Move non-templated parts of IPC::Connection out of line
This patch splits IPC::Connection into Connection and ConnectionBase.
ConnectionBase moves into Connection.cpp so we don't have to inline it
for every single templated subclass.
2021-10-24 01:01:01 +02:00

10 lines
163 B
CMake

set(SOURCES
Connection.cpp
Decoder.cpp
Encoder.cpp
Message.cpp
Stub.cpp
)
serenity_lib(LibIPC ipc)
target_link_libraries(LibIPC LibC LibCore)