1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-07 02:07:34 +00:00
serenity/Libraries/LibCompress/CMakeLists.txt
stelar7 98e18d7339 LibCompress: Add LibCompress
For now this only contains DEFLATE, and a very simple Zlib
Eventually GZip, etc. can go here as well.
2020-08-04 11:27:07 +02:00

7 lines
122 B
CMake

set(SOURCES
Deflate.cpp
Zlib.cpp
)
serenity_lib(LibCompress compression)
target_link_libraries(LibCompress LibC)