summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibProtocol/CMakeLists.txt
blob: 95d340b699357cd980f653f28da26a707b785252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
set(SOURCES
    Request.cpp
    RequestClient.cpp
    WebSocket.cpp
    WebSocketClient.cpp
)

set(GENERATED_SOURCES
    ../../Services/RequestServer/RequestClientEndpoint.h
    ../../Services/RequestServer/RequestServerEndpoint.h
    ../../Services/WebSocket/WebSocketClientEndpoint.h
    ../../Services/WebSocket/WebSocketServerEndpoint.h
)

serenity_lib(LibProtocol protocol)
target_link_libraries(LibProtocol PRIVATE LibCore LibIPC)