ladybird/Userland/Libraries/LibWebSocket/CMakeLists.txt
Andreas Kling be5f6aa46e LibWebSocket: Make WebSocketImpl an abstract class
The LibCore sockets implementation becomes WebSocketImplSerenity.
This will allow us to create a custom WebSocketImpl subclass for Qt
to use in Ladybird.
2022-11-09 02:06:33 +01:00

10 lines
224 B
CMake

set(SOURCES
ConnectionInfo.cpp
Impl/WebSocketImpl.cpp
Impl/WebSocketImplSerenity.cpp
WebSocket.cpp
)
serenity_lib(LibWebSocket websocket)
target_link_libraries(LibWebSocket PRIVATE LibCore LibCrypto LibTLS)