mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 17:28:48 +00:00
This library currently contains a basic WebSocket client that can handle both standard TCP websockets and TLS websockets.
10 lines
272 B
CMake
10 lines
272 B
CMake
set(SOURCES
|
|
ConnectionInfo.cpp
|
|
Impl/AbstractWebSocketImpl.cpp
|
|
Impl/TCPWebSocketConnectionImpl.cpp
|
|
Impl/TLSv12WebSocketConnectionImpl.cpp
|
|
WebSocket.cpp
|
|
)
|
|
|
|
serenity_lib(LibWebSocket websocket)
|
|
target_link_libraries(LibWebSocket LibCore LibCrypto LibTLS)
|