1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +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

@ -512,7 +512,7 @@ if (BUILD_LAGOM)
if (NOT EMSCRIPTEN)
# LibELF is part of LibC in SerenityOS builds, but not in Lagom.
add_executable(file ../../Userland/Utilities/file.cpp)
target_link_libraries(file LibAudio LibCompress LibCore LibELF LibGfx LibIPC LibMain)
target_link_libraries(file LibAudio LibArchive LibCompress LibCore LibELF LibGfx LibIPC LibMain)
endif()
add_executable(gml-format ../../Userland/Utilities/gml-format.cpp)