test/meson.build: work around linker failure due to statically linked CURL
This commit is contained in:
parent
e94c436264
commit
a689b881d3
|
@ -336,6 +336,11 @@ if curl_dep.found()
|
|||
include_directories: inc,
|
||||
dependencies: [
|
||||
curl_dep,
|
||||
|
||||
# Explicitly linking with zlib here works around a linker
|
||||
# failure on Windows, because our Windows CURL build is
|
||||
# statically linked and thus declares no dependency on zlib
|
||||
zlib_dep,
|
||||
],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue