mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 10:15:06 +00:00

There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
16 lines
376 B
Text
16 lines
376 B
Text
shared_library("LibWebSocket") {
|
|
output_name = "websocket"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibCrypto",
|
|
"//Userland/Libraries/LibTLS",
|
|
]
|
|
sources = [
|
|
"ConnectionInfo.cpp",
|
|
"Impl/WebSocketImpl.cpp",
|
|
"Impl/WebSocketImplSerenity.cpp",
|
|
"WebSocket.cpp",
|
|
]
|
|
}
|