mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 04:54:58 +00:00

This keeps the APIs separate as they are wildly different, a future improvement could be to somehow unify the APIs (if possible). Closes #23080.
13 lines
303 B
CMake
13 lines
303 B
CMake
set(SOURCES
|
|
Request.cpp
|
|
RequestClient.cpp
|
|
WebSocket.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
../../Services/RequestServer/RequestClientEndpoint.h
|
|
../../Services/RequestServer/RequestServerEndpoint.h
|
|
)
|
|
|
|
serenity_lib(LibProtocol protocol)
|
|
target_link_libraries(LibProtocol PRIVATE LibCore LibIPC)
|