]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Meson: Properly add the yaml-cpp and boost-test dependencies
authorFred Morcos <fred.morcos@open-xchange.com>
Mon, 6 Nov 2023 13:13:17 +0000 (14:13 +0100)
committerFred Morcos <fred.morcos@open-xchange.com>
Wed, 20 Mar 2024 12:28:55 +0000 (13:28 +0100)
meson.build

index 3c68dc70aabf78839cce1e0bc5a870a367312960..4ef57da2889f26be5dd5fd9030a5e37d30d39a5b 100644 (file)
@@ -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 = []