mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-25 05:55:17 +00:00
27 lines
496 B
Meson
27 lines
496 B
Meson
|
nwfilter_driver_sources = [
|
||
|
'nwfilter_driver.c',
|
||
|
'nwfilter_gentech_driver.c',
|
||
|
'nwfilter_dhcpsnoop.c',
|
||
|
'nwfilter_ebiptables_driver.c',
|
||
|
'nwfilter_learnipaddr.c',
|
||
|
]
|
||
|
|
||
|
if conf.has('WITH_NWFILTER')
|
||
|
nwfilter_driver_impl = static_library(
|
||
|
'virt_driver_nwfilter_impl',
|
||
|
[
|
||
|
nwfilter_driver_sources,
|
||
|
],
|
||
|
dependencies: [
|
||
|
access_dep,
|
||
|
dbus_dep,
|
||
|
libnl_dep,
|
||
|
libpcap_dep,
|
||
|
src_dep,
|
||
|
],
|
||
|
include_directories: [
|
||
|
conf_inc_dir,
|
||
|
],
|
||
|
)
|
||
|
endif
|