mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 06:54:57 +00:00

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. :^)
10 lines
186 B
CMake
10 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)
|