1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +00:00

Userland: Add simple zip utility

This uses the recently added ZipOutputStream in LibArchive.
This commit is contained in:
Idan Horowitz 2021-03-22 23:13:27 +02:00 committed by Andreas Kling
parent 550ae23e80
commit 97216c935a
2 changed files with 139 additions and 0 deletions

View file

@ -48,6 +48,7 @@ target_link_libraries(test-pthread LibThread)
target_link_libraries(test-web LibWeb)
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(gunzip LibCompress)
target_link_libraries(CppParserTest LibCpp LibGUI)