mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 10:29:23 +00:00
15 lines
302 B
Text
15 lines
302 B
Text
shared_library("LibCompress") {
|
|
output_name = "compress"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Deflate.cpp",
|
|
"Gzip.cpp",
|
|
"PackBitsDecoder.cpp",
|
|
"Zlib.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibCrypto",
|
|
]
|
|
}
|