mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:15:06 +00:00

The WebSocket service isolates communication with a WebSocket to its own isolated process. Similar to other isolating services, it has its own user and group.
12 lines
317 B
CMake
12 lines
317 B
CMake
compile_ipc(WebSocketServer.ipc WebSocketServerEndpoint.h)
|
|
compile_ipc(WebSocketClient.ipc WebSocketClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ClientConnection.cpp
|
|
main.cpp
|
|
WebSocketClientEndpoint.h
|
|
WebSocketServerEndpoint.h
|
|
)
|
|
|
|
serenity_bin(WebSocket)
|
|
target_link_libraries(WebSocket LibCore LibIPC LibWebSocket)
|