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)