mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-08 14:05:19 +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>
29 lines
412 B
Meson
29 lines
412 B
Meson
vmx_sources = [
|
|
'vmx.c',
|
|
]
|
|
|
|
if conf.has('WITH_VMX')
|
|
vmx_lib = static_library(
|
|
'virt_vmx',
|
|
[
|
|
vmx_sources,
|
|
],
|
|
dependencies: [
|
|
src_dep,
|
|
],
|
|
include_directories: [
|
|
conf_inc_dir,
|
|
],
|
|
)
|
|
|
|
libvirt_libs += vmx_lib
|
|
endif
|
|
|
|
vmx_inc_dir = include_directories('.')
|
|
|
|
if conf.has('WITH_VMX')
|
|
used_sym_files += 'libvirt_vmx.syms'
|
|
else
|
|
sym_files += 'libvirt_vmx.syms'
|
|
endif
|