ladybird/Userland/Libraries/LibHTTP/CMakeLists.txt
Andreas Kling d77843e2f0 LibHTTP: Remove the now-unused job classes
The request/response classes are still used in a couple places and will
need more careful removal.
2024-09-22 06:43:12 +02:00

7 lines
156 B
CMake

set(SOURCES
HttpRequest.cpp
HttpResponse.cpp
)
serenity_lib(LibHTTP http)
target_link_libraries(LibHTTP PRIVATE LibCompress LibCore LibTLS LibURL)