1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

ProtocolServer: Integrate LibGemini for simple requests

This commit is contained in:
Conrad Pankoff 2020-05-14 18:35:46 +10:00 committed by Andreas Kling
parent 308a755c38
commit aaa6f90c34
6 changed files with 199 additions and 1 deletions

View file

@ -3,6 +3,8 @@ compile_ipc(ProtocolClient.ipc ProtocolClientEndpoint.h)
set(SOURCES
Download.cpp
GeminiDownload.cpp
GeminiProtocol.cpp
HttpDownload.cpp
HttpProtocol.cpp
HttpsDownload.cpp
@ -15,4 +17,4 @@ set(SOURCES
)
serenity_bin(ProtocolServer)
target_link_libraries(ProtocolServer LibCore LibIPC LibHTTP)
target_link_libraries(ProtocolServer LibCore LibIPC LibGemini LibHTTP)