ladybird/Userland/Libraries/LibHTTP/CMakeLists.txt
Idan Horowitz c12781a6a2 LibCore+LibHTTP+LibGfx: Switch to LibCompress
This commit removes the only 3rd party library (and its usages)
in serenity: puff, which is used for deflate decompression. and
replaces it with the existing original serenity implementation
in LibCompress. :^)
2021-03-03 23:42:32 +01:00

11 lines
186 B
CMake

set(SOURCES
HttpJob.cpp
HttpRequest.cpp
HttpResponse.cpp
HttpsJob.cpp
Job.cpp
)
serenity_lib(LibHTTP http)
target_link_libraries(LibHTTP LibCompress LibCore LibTLS)