mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-09 01:56:21 +00:00
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
| rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
| rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
27 lines
583 B
CMake
27 lines
583 B
CMake
serenity_component(
|
|
RequestServer
|
|
TARGETS RequestServer
|
|
)
|
|
|
|
compile_ipc(RequestServer.ipc RequestServerEndpoint.h)
|
|
compile_ipc(RequestClient.ipc RequestClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
ConnectionCache.cpp
|
|
Request.cpp
|
|
RequestClientEndpoint.h
|
|
RequestServerEndpoint.h
|
|
GeminiRequest.cpp
|
|
GeminiProtocol.cpp
|
|
HttpRequest.cpp
|
|
HttpProtocol.cpp
|
|
HttpsRequest.cpp
|
|
HttpsProtocol.cpp
|
|
main.cpp
|
|
Protocol.cpp
|
|
)
|
|
|
|
serenity_bin(RequestServer)
|
|
target_link_libraries(RequestServer LibCore LibIPC LibGemini LibHTTP LibMain)
|