ladybird/Tests/LibCompress/CMakeLists.txt
2023-03-21 10:25:13 +01:00

15 lines
308 B
CMake

set(TEST_SOURCES
TestBrotli.cpp
TestDeflate.cpp
TestGzip.cpp
TestLzma.cpp
TestXz.cpp
TestZlib.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibCompress LIBS LibCompress)
endforeach()
install(DIRECTORY brotli-test-files DESTINATION usr/Tests/LibCompress)