serenity/Tests/LibHTTP/CMakeLists.txt
Dan Klishch 77be5254e1 LibHTTP: Implement bare-bones HTTP/1.1 client using coroutines
We don't have asynchronous TCP socket implementation, so its usefulness
is a bit limited currently but we can still test it using memory
streams. Additionally, it serves as a temporary {show,test}case for the
asynchronous streams machinery.
2024-06-13 17:40:24 +02:00

8 lines
152 B
CMake

set(TEST_SOURCES
TestHttp11Connection.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibHTTP LIBS LibHTTP)
endforeach()