mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09: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)
|