mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 01:09:25 +00:00
This reverts commit 8bb610b97a.
Linking wolfSSL seems to cause more legal trouble than it's worth due to
it being GPLv2, so let's undo this for now.
23 lines
544 B
CMake
23 lines
544 B
CMake
compile_ipc(RequestServer.ipc RequestServerEndpoint.h)
|
|
compile_ipc(RequestClient.ipc RequestClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
ConnectionCache.cpp
|
|
Request.cpp
|
|
HttpRequest.cpp
|
|
HttpProtocol.cpp
|
|
HttpsRequest.cpp
|
|
HttpsProtocol.cpp
|
|
main.cpp
|
|
Protocol.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
RequestClientEndpoint.h
|
|
RequestServerEndpoint.h
|
|
)
|
|
|
|
serenity_bin(RequestServer)
|
|
target_link_libraries(RequestServer PRIVATE LibCore LibCrypto LibIPC LibHTTP LibMain LibTLS LibWebSocket LibURL LibThreading)
|