mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
d748edd994
This compression scheme was quite popular during the 80's, and we can still find it in use inside file formats such as TIFF or PDF.
17 lines
401 B
CMake
17 lines
401 B
CMake
set(TEST_SOURCES
|
|
TestBrotli.cpp
|
|
TestDeflate.cpp
|
|
TestGzip.cpp
|
|
TestLzma.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)
|