serenity/Tests/LibTest/CMakeLists.txt
Dan Klishch 205bfcc6c8 LibTest: Add Test::AsyncMemory{Input,Output}Stream
They are useful for unit testing other asynchronous streams. They have
to be tested themselves in the first place though.
2024-06-13 17:40:24 +02:00

10 lines
199 B
CMake

set(TEST_SOURCES
TestAsyncTestStreams.cpp
TestNoCrash.cpp
TestGenerator.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibSQL LIBS LibSQL LibIPC)
endforeach()