1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:47:34 +00:00

Utilities: Add gzip utility

This is a small utility that is similar to gunzip but is used
for compression instead of decompression.
This commit is contained in:
Idan Horowitz 2021-03-27 16:11:13 +03:00 committed by Andreas Kling
parent 9734420dfa
commit ff32002f2b
2 changed files with 93 additions and 0 deletions

View file

@ -51,6 +51,7 @@ target_link_libraries(tt LibPthread)
target_link_libraries(grep LibRegex)
target_link_libraries(zip LibArchive LibCompress LibCrypto)
target_link_libraries(unzip LibArchive LibCompress)
target_link_libraries(gzip LibCompress)
target_link_libraries(gunzip LibCompress)
target_link_libraries(CppParserTest LibCpp LibGUI)
target_link_libraries(PreprocessorTest LibCpp LibGUI)