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

Userland: Teach the file utility about zip files

It now shows a short description with a file and directory counts, and
the total content size uncompressed.
This commit is contained in:
Valtteri Koskivuori 2023-07-03 17:45:59 +03:00 committed by Sam Atkins
parent 729aae8437
commit 2c6b156803
4 changed files with 30 additions and 3 deletions

View file

@ -41,7 +41,7 @@ set(utility_srcs
serenity_bin(BuggieBox)
target_sources(BuggieBox PRIVATE main.cpp)
target_link_libraries(BuggieBox PRIVATE LibMain LibShell LibCompress LibCore LibCrypto LibFileSystem LibGfx LibLine LibRegex LibAudio)
target_link_libraries(BuggieBox PRIVATE LibMain LibShell LibArchive LibCompress LibCore LibCrypto LibFileSystem LibGfx LibLine LibRegex LibAudio)
foreach(file IN LISTS utility_srcs)
buggiebox_utility(${file})