mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
13 lines
280 B
CMake
13 lines
280 B
CMake
set(SOURCES
|
|
Deflate.cpp
|
|
GenericZlib.cpp
|
|
Gzip.cpp
|
|
PackBitsDecoder.cpp
|
|
Zlib.cpp
|
|
)
|
|
|
|
serenity_lib(LibCompress compress)
|
|
target_link_libraries(LibCompress PRIVATE LibCore LibCrypto)
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
target_link_libraries(LibCompress PRIVATE ZLIB::ZLIB)
|