mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 15:17:46 +00:00
Ladybird: Add WebSocket server for use by Lagom networking
Hide its use behind the same flag as RequestServer in WebContent.
This commit is contained in:
parent
dd694215bc
commit
7d7c419ce6
15 changed files with 162 additions and 32 deletions
8
Ladybird/WebSocket/CMakeLists.txt
Normal file
8
Ladybird/WebSocket/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
set(SOURCES
|
||||
"${SERENITY_SOURCE_DIR}/Userland/Services/WebSocket/ConnectionFromClient.cpp"
|
||||
main.cpp
|
||||
)
|
||||
|
||||
add_executable(WebSocketServer ${SOURCES})
|
||||
set_target_properties(WebSocketServer PROPERTIES OUTPUT_NAME WebSocket)
|
||||
target_link_libraries(WebSocketServer PRIVATE LibCore LibFileSystem LibIPC LibMain LibTLS LibWebSocket LibWebView)
|
Loading…
Add table
Add a link
Reference in a new issue