1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 16:25:08 +00:00
serenity/Userland/Libraries/LibArchive/CMakeLists.txt
Idan Horowitz caf4bde3a9 LibArchive: Add Zip file parser
This is based on the zip specification on PKWARE's zip specification
(https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT) and will
be used in the unzip utility and eventually in the zip utility.
2021-03-23 16:09:36 +01:00

7 lines
136 B
CMake

set(SOURCES
TarStream.cpp
Zip.cpp
)
serenity_lib(LibArchive archive)
target_link_libraries(LibArchive LibCore)