1
0
Fork 0
knot-resolver/modules/hints/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

22 lines
388 B
Meson

# C module: hints
# SPDX-License-Identifier: GPL-3.0-or-later
hints_src = files([
'hints.c',
])
c_src_lint += hints_src
hints_mod = shared_module(
'hints',
hints_src,
dependencies: mod_deps,
include_directories: mod_inc_dir,
name_prefix: '',
install: true,
install_dir: modules_dir,
link_with: kresd,
)
config_tests += [
['hints', files('tests/hints.test.lua')],
]