Files
ladybird/Libraries/LibCompress/CMakeLists.txt
Undefine e39a8719fd Meta: Move most dependency checks to check_for_dependencies.cmake
This file was here for quite a long while now. Let's finally move most
of the dependency checks to one centralized place.
2026-04-20 16:41:29 -06:00

13 lines
252 B
CMake

set(SOURCES
Deflate.cpp
GenericZlib.cpp
Gzip.cpp
PackBitsDecoder.cpp
Zlib.cpp
)
ladybird_lib(LibCompress compress)
target_link_libraries(LibCompress PRIVATE LibCore LibCrypto)
target_link_libraries(LibCompress PRIVATE ZLIB::ZLIB)