From: Fred Morcos Date: Mon, 6 Nov 2023 13:13:17 +0000 (+0100) Subject: Meson: Properly add the yaml-cpp and boost-test dependencies X-Git-Tag: rec-5.1.0-alpha1~80^2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0568fae77d01daa34ffa492bf6102e13c9ab68f8;p=thirdparty%2Fpdns.git Meson: Properly add the yaml-cpp and boost-test dependencies --- diff --git a/meson.build b/meson.build index 3c68dc70aa..4ef57da288 100644 --- a/meson.build +++ b/meson.build @@ -172,6 +172,12 @@ endforeach # Add the sqlite3 dependency for the bind and gsqlite3 backends and pdnsutil. deps += get_variable('dep_sqlite3', dependency('', required: false)) +# Add the yaml-cpp dependency for geoip and ixfrdist. +deps += get_variable('dep_yaml_cpp', dependency('', required: false)) + +# Add the boost-test dependency for unit tests and backend unit tests. +deps += get_variable('dep_boost_test', dependency('', required: false)) + subdir('pdns') selected_modules = []