mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
d3a89ce737
This library currently contains a basic WebSocket client that can handle both standard TCP websockets and TLS websockets.
11 lines
272 B
CMake
11 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)
|