@@ -10,6 +10,7 @@ chump_lib_sources = [
10
10
# Fetch the dependency
11
11
nlohmann_json_dep = subproject (' nlohmann_json' ).get_variable (' nlohmann_json_dep' )
12
12
openssl_dep = subproject (' openssl' , default_options : [' prefer_static=true' ], required : true ).get_variable (' openssl_dep' )
13
+ zlib_dep = subproject (' zlib' , default_options : [' prefer_static=true' ], required : true ).get_variable (' zlib_dep' )
13
14
libcurl_dep = subproject (' curl' , default_options : [' prefer_static=true' ], required : true ).get_variable (' curl_dep' )
14
15
minizip_dep = subproject (' minizip-ng' , default_options : [' prefer_static=true' ], required : true ).get_variable (' minizip_ng_dep' )
15
16
@@ -20,10 +21,10 @@ chump_lib = static_library(
20
21
' chump_lib' ,
21
22
sources : chump_lib_sources,
22
23
include_directories : inc,
23
- dependencies : [nlohmann_json_dep, libcurl_dep, openssl_dep, minizip_dep, cheaders_dep],
24
+ dependencies : [nlohmann_json_dep, libcurl_dep, openssl_dep, minizip_dep, cheaders_dep, zlib_dep ],
24
25
)
25
26
26
27
chump_lib_dep = declare_dependency (
27
- dependencies : [nlohmann_json_dep, libcurl_dep, openssl_dep, minizip_dep, cheaders_dep],
28
+ dependencies : [nlohmann_json_dep, libcurl_dep, openssl_dep, minizip_dep, cheaders_dep, zlib_dep ],
28
29
include_directories : inc,
29
30
link_with : chump_lib)
0 commit comments