mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 06:25:19 +00:00
32 lines
521 B
Meson
32 lines
521 B
Meson
|
vbox_driver_sources = [
|
||
|
'vbox_V5_2.c',
|
||
|
'vbox_V6_0.c',
|
||
|
'vbox_V6_1.c',
|
||
|
'vbox_common.c',
|
||
|
'vbox_driver.c',
|
||
|
'vbox_network.c',
|
||
|
'vbox_snapshot_conf.c',
|
||
|
'vbox_storage.c',
|
||
|
'vbox_XPCOMCGlue.c',
|
||
|
]
|
||
|
|
||
|
if conf.has('WITH_VBOX')
|
||
|
vbox_driver_impl = static_library(
|
||
|
'virt_driver_vbox_impl',
|
||
|
[
|
||
|
vbox_driver_sources,
|
||
|
],
|
||
|
c_args: [
|
||
|
'-DVBOX_DRIVER',
|
||
|
],
|
||
|
dependencies: [
|
||
|
dlopen_dep,
|
||
|
src_dep,
|
||
|
win32_dep,
|
||
|
],
|
||
|
include_directories: [
|
||
|
conf_inc_dir,
|
||
|
],
|
||
|
)
|
||
|
endif
|