mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 14:35:25 +00:00
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
|