Skip to content

Commit

Permalink
build(meson): add libcurl test dependency (#1914)
Browse files Browse the repository at this point in the history
Prompted by PR #1911
  • Loading branch information
Tachi107 authored Sep 4, 2024
1 parent d5fc340 commit f695876
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down Expand Up @@ -119,7 +120,8 @@ test(
'test.cc',
dependencies: [
cpp_httplib_dep,
gtest_dep
gtest_dep,
libcurl_dep
],
override_options: test_options
),
Expand Down

0 comments on commit f695876

Please sign in to comment.