mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 12:45:06 +00:00
20 lines
395 B
Text
20 lines
395 B
Text
shared_library("LibCompress") {
|
|
output_name = "compress"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Brotli.cpp",
|
|
"BrotliDictionary.cpp",
|
|
"Deflate.cpp",
|
|
"Gzip.cpp",
|
|
"Lzma.cpp",
|
|
"Lzma2.cpp",
|
|
"PackBitsDecoder.cpp",
|
|
"Xz.cpp",
|
|
"Zlib.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibCrypto",
|
|
]
|
|
}
|