1
0
Fork 0
knot-resolver/modules/edns_keepalive/meson.build
Daniel Baumann fbc604e215
Adding upstream version 5.7.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:17 +02:00

18 lines
386 B
Meson

# C module: edns_keepalive
# SPDX-License-Identifier: GPL-3.0-or-later
edns_keepalive_src = files([
'edns_keepalive.c',
])
c_src_lint += edns_keepalive_src
edns_keepalive_mod = shared_module(
'edns_keepalive',
edns_keepalive_src,
dependencies: mod_deps,
include_directories: mod_inc_dir,
name_prefix: '',
install: true,
install_dir: modules_dir,
link_with: kresd,
)