1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 11:07:34 +00:00
serenity/Userland/Libraries/LibIPC/CMakeLists.txt
sin-ack 89d9a1afc0 LibCore+LibIPC: Move SystemServerTakeover.{h,cpp} to LibCore
This functionality is required by Core::LocalServer and LibIPC depends
on LibCore.

take_over_accepted_socket_from_system_server has also been renamed to
take_over_socket_from_system_server as the socket need not be accepted
before taking it over. :^)
2022-02-06 10:28:19 +01: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)