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

LibTar: Create LibTar and TarStream

TarStream parses the contents of a tar file from an InputStream
This commit is contained in:
Peter Elliott 2020-10-01 22:22:40 -07:00 committed by Andreas Kling
parent 1f90e4ab8d
commit 99ee93149c
5 changed files with 312 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
TarStream.cpp
)
serenity_lib(LibTar tar)
target_link_libraries(LibTar LibCore)