mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 09:55:08 +00:00

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.
10 lines
163 B
CMake
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)
|