mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 10:23:09 +00:00
b681012422
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com>
27 lines
432 B
Meson
27 lines
432 B
Meson
vmware_sources = [
|
|
'vmware_conf.c',
|
|
'vmware_driver.c',
|
|
]
|
|
|
|
if conf.has('WITH_VMWARE')
|
|
vmware_lib = static_library(
|
|
'virt_vmware',
|
|
vmware_sources,
|
|
dependencies: [
|
|
src_dep,
|
|
],
|
|
include_directories: [
|
|
conf_inc_dir,
|
|
vmx_inc_dir,
|
|
],
|
|
)
|
|
|
|
libvirt_libs += vmware_lib
|
|
endif
|
|
|
|
if conf.has('WITH_VMWARE')
|
|
used_sym_files += 'libvirt_vmware.syms'
|
|
else
|
|
sym_files += 'libvirt_vmware.syms'
|
|
endif
|