From f69587656f647e53394f8c047f3c118e008046bc Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda Date: Thu, 5 Sep 2024 00:05:03 +0200 Subject: [PATCH] build(meson): add libcurl test dependency (#1914) Prompted by PR #1911 --- test/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 52fb8251db..be9ca2b0f5 100644 --- a/test/meson.build +++ b/test/meson.build @@ -3,6 +3,7 @@ # SPDX-License-Identifier: MIT gtest_dep = dependency('gtest', main: true) +libcurl_dep = dependency('libcurl') openssl = find_program('openssl') test_conf = files('test.conf') @@ -119,7 +120,8 @@ test( 'test.cc', dependencies: [ cpp_httplib_dep, - gtest_dep + gtest_dep, + libcurl_dep ], override_options: test_options ),