mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 10:23:09 +00:00
23 lines
381 B
Meson
23 lines
381 B
Meson
|
network_driver_sources = [
|
||
|
'bridge_driver.c',
|
||
|
'bridge_driver_platform.c',
|
||
|
]
|
||
|
|
||
|
if conf.has('WITH_NETWORK')
|
||
|
network_driver_impl = static_library(
|
||
|
'virt_driver_network_impl',
|
||
|
[
|
||
|
network_driver_sources,
|
||
|
],
|
||
|
dependencies: [
|
||
|
access_dep,
|
||
|
dbus_dep,
|
||
|
libnl_dep,
|
||
|
src_dep,
|
||
|
],
|
||
|
include_directories: [
|
||
|
conf_inc_dir,
|
||
|
],
|
||
|
)
|
||
|
endif
|