mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com>
19 lines
236 B
Meson
19 lines
236 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,
|
|
],
|
|
)
|
|
endif
|