mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:24:58 +00:00

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.
14 lines
255 B
CMake
14 lines
255 B
CMake
set(SOURCES
|
|
Brotli.cpp
|
|
BrotliDictionary.cpp
|
|
Deflate.cpp
|
|
Lzma.cpp
|
|
Lzma2.cpp
|
|
PackBitsDecoder.cpp
|
|
Xz.cpp
|
|
Zlib.cpp
|
|
Gzip.cpp
|
|
)
|
|
|
|
serenity_lib(LibCompress compress)
|
|
target_link_libraries(LibCompress PRIVATE LibCore LibCrypto)
|