mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 14:37:43 +00:00

There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
19 lines
368 B
Text
19 lines
368 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",
|
|
"Xz.cpp",
|
|
"Zlib.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibCrypto",
|
|
]
|
|
}
|