serenity/Tests/LibCompress/CMakeLists.txt
2024-05-14 12:33:53 -06:00

18 lines
417 B
CMake

set(TEST_SOURCES
TestBrotli.cpp
TestDeflate.cpp
TestGzip.cpp
TestLzma.cpp
TestLzw.cpp
TestPackBits.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)
install(DIRECTORY deflate-test-files DESTINATION usr/Tests/LibCompress)