
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)
|