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:
parent
567845c480
commit
98e18d7339
9 changed files with 764 additions and 1 deletions
7
Libraries/LibCompress/CMakeLists.txt
Normal file
7
Libraries/LibCompress/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
set(SOURCES
|
||||
Deflate.cpp
|
||||
Zlib.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibCompress compression)
|
||||
target_link_libraries(LibCompress LibC)
|
Loading…
Add table
Add a link
Reference in a new issue