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

unzip: Use the new LibArchive Zip parser

This parser should be a little bit more modern and a little more
resilient to zip files from other operating systems. As a side
effect we now also support extracting zip files that are using
DEFLATE compression (using our own LibCompress).
This commit is contained in:
Idan Horowitz 2021-03-18 22:39:23 +02:00 committed by Andreas Kling
parent caf4bde3a9
commit 8eceef0b1b
2 changed files with 55 additions and 118 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(unzip LibArchive LibCompress)
target_link_libraries(gunzip LibCompress)
target_link_libraries(CppParserTest LibCpp LibGUI)
target_link_libraries(PreprocessorTest LibCpp LibGUI)