mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
18 lines
335 B
Plaintext
18 lines
335 B
Plaintext
shared_library("LibCompress") {
|
|
output_name = "compress"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Deflate.cpp",
|
|
"Gzip.cpp",
|
|
"Lzma.cpp",
|
|
"Lzma2.cpp",
|
|
"PackBitsDecoder.cpp",
|
|
"Zlib.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibCrypto",
|
|
]
|
|
}
|