1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:47:35 +00:00

LibCompress: Add LibCompress

For now this only contains DEFLATE, and a very simple Zlib
Eventually GZip, etc. can go here as well.
This commit is contained in:
stelar7 2020-08-01 22:01:39 +02:00 committed by Andreas Kling
parent 567845c480
commit 98e18d7339
9 changed files with 764 additions and 1 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
Deflate.cpp
Zlib.cpp
)
serenity_lib(LibCompress compression)
target_link_libraries(LibCompress LibC)