diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-05-07 23:49:26 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-07 23:22:07 +0200 |
commit | 284730c0027d0afd11b259191c37206eb0a83728 (patch) | |
tree | 1f800f80bd2178239e6f18c8f29f1728948714f4 /Userland/Utilities/CMakeLists.txt | |
parent | 2119e0fb3f8ace00f395e61eeb10222b7e78f899 (diff) | |
download | serenity-284730c0027d0afd11b259191c37206eb0a83728.zip |
Utilities: Use GzipDecompressor::describe_header for gzip descriptions
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 429107fca5..2a6fc7843f 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -56,4 +56,4 @@ target_link_libraries(gzip LibCompress) target_link_libraries(gunzip LibCompress) target_link_libraries(CppParserTest LibCpp LibGUI) target_link_libraries(PreprocessorTest LibCpp LibGUI) -target_link_libraries(file LibGfx LibIPC) +target_link_libraries(file LibGfx LibIPC LibCompress) |