2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00
kea/src/hooks/dhcp/pgsql/meson.build
2025-02-01 20:53:12 +01:00

37 lines
850 B
Meson

if not postgresql.found()
subdir_done()
endif
dhcp_pgsql_lib = library('dhcp_pgsql',
'pgsql_callouts.cc',
'pgsql_cb_dhcp4.cc',
'pgsql_cb_dhcp4.h',
'pgsql_cb_dhcp6.cc',
'pgsql_cb_dhcp6.h',
'pgsql_cb_impl.cc',
'pgsql_cb_impl.h',
'pgsql_cb_log.cc',
'pgsql_cb_log.h',
'pgsql_cb_messages.cc',
'pgsql_cb_messages.h',
'pgsql_hb_log.cc',
'pgsql_hb_log.h',
'pgsql_hb_messages.cc',
'pgsql_hb_messages.h',
'pgsql_host_data_source.cc',
'pgsql_host_data_source.h',
'pgsql_lb_log.cc',
'pgsql_lb_log.h',
'pgsql_lb_messages.cc',
'pgsql_lb_messages.h',
'pgsql_lease_mgr.cc',
'pgsql_lease_mgr.h',
'pgsql_query_macros_dhcp.h',
'version.cc',
dependencies: [postgresql],
include_directories: [include_directories('.')] + includes,
install: true,
install_dir: 'lib/kea/hooks',
link_with: libs_built_so_far,
)