ladybird/Userland/Libraries/LibIPC/CMakeLists.txt
Andreas Kling 4bc5d6a681 LibIPC: Send IPC messages on a secondary thread
To prevent deadlocks when both IPC peers are trying to send to each
other but both sides have too much in their buffer already, we now
move the send operation to a secondary thread where it can block until
the peer is able to handle it.
2024-09-19 07:37:46 +02:00

9 lines
173 B
CMake

set(SOURCES
Connection.cpp
Decoder.cpp
Encoder.cpp
Message.cpp
)
serenity_lib(LibIPC ipc)
target_link_libraries(LibIPC PRIVATE LibCore LibURL LibThreading)