ladybird/Tests/LibThreading/CMakeLists.txt
Braydn a94bf9bd09 LibThreading: ThreadPool deadlock test
Enable `LibThreading` tests and add a test to check for deadlocks in
`ThreadPool`s
2024-08-19 03:08:04 +02:00

8 lines
175 B
CMake

set(TEST_SOURCES
TestThread.cpp
TestThreadPool.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibThreading LIBS LibThreading)
endforeach()