mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
3660e6ad35
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com>
34 lines
519 B
Meson
34 lines
519 B
Meson
vz_driver_sources = [
|
|
'vz_driver.c',
|
|
'vz_utils.c',
|
|
'vz_sdk.c',
|
|
]
|
|
|
|
if conf.has('WITH_VZ')
|
|
vz_driver_impl = static_library(
|
|
'virt_driver_vz_impl',
|
|
[
|
|
vz_driver_sources,
|
|
],
|
|
dependencies: [
|
|
access_dep,
|
|
libnl_dep,
|
|
parallels_sdk_dep,
|
|
src_dep,
|
|
],
|
|
include_directories: [
|
|
conf_inc_dir,
|
|
],
|
|
)
|
|
|
|
virt_modules += {
|
|
'name': 'virt_driver_vz',
|
|
'link_whole': [
|
|
vz_driver_impl,
|
|
],
|
|
'link_args': [
|
|
libvirt_no_undefined,
|
|
],
|
|
}
|
|
endif
|