From 3de266915fe6fa0b0730579a2faa396bb2e52f1b Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Mon, 6 Nov 2023 10:29:15 +0100 Subject: [PATCH] Meson: Build pdns-dumresp --- meson.build | 8 ++++++++ pdns/meson.build | 12 ++++++++++++ 2 files changed, 20 insertions(+) diff --git a/meson.build b/meson.build index 720041c447..44e1519a41 100644 --- a/meson.build +++ b/meson.build @@ -285,4 +285,12 @@ if get_option('tools') libpdns_calidns, ], ) + + pdns_dumresp = executable( + 'pdns-dumresp', + config_h, + dependencies: [ + libpdns_dumresp, + ], + ) endif diff --git a/pdns/meson.build b/pdns/meson.build index 385aa23bb6..fd1fc19382 100644 --- a/pdns/meson.build +++ b/pdns/meson.build @@ -647,3 +647,15 @@ libpdns_calidns = declare_dependency( ], ) ) + +libpdns_dumresp = declare_dependency( + link_whole: static_library( + 'pdns-dumresp', + 'dumresp.cc', + extra_files: [], + dependencies: [ + deps, + libpdns_common, + ], + ) +) -- 2.47.2