mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
18 lines
440 B
Meson
18 lines
440 B
Meson
config_report_cc = configure_file(
|
|
input: 'config_report.cc.in',
|
|
output: 'config_report.cc',
|
|
configuration: conf_data,
|
|
)
|
|
|
|
kea_cfgrpt_lib = library(
|
|
'kea-cfgrpt',
|
|
'cfgrpt.cc',
|
|
config_report_cc,
|
|
'config_report.h',
|
|
include_directories: [include_directories('.')] + INCLUDES,
|
|
install: true,
|
|
install_dir: 'lib',
|
|
link_with: LIBS_BUILT_SO_FAR,
|
|
)
|
|
LIBS_BUILT_SO_FAR = [kea_cfgrpt_lib] + LIBS_BUILT_SO_FAR
|