zlib is already included transitively for other dependencies, include it explicitly and link it with `LibCompress`.
@@ -7,3 +7,6 @@ set(SOURCES
serenity_lib(LibCompress compress)
target_link_libraries(LibCompress PRIVATE LibCore LibCrypto)
+
+find_package(ZLIB REQUIRED)
+target_link_libraries(LibCompress PRIVATE ZLIB::ZLIB)
@@ -122,7 +122,8 @@
"name": "vulkan-headers",
"platform": "!android"
},
- "woff2"
+ "woff2",
+ "zlib"
],
"overrides": [
{
@@ -196,6 +197,10 @@
"name": "woff2",
"version": "1.0.2#4"
+ },
+ {
+ "name": "zlib",
+ "version": "1.3.1"
}
]