mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-24 21:45:21 +00:00
21 lines
299 B
Meson
21 lines
299 B
Meson
|
openvz_sources = [
|
||
|
'openvz_conf.c',
|
||
|
'openvz_driver.c',
|
||
|
'openvz_util.c',
|
||
|
]
|
||
|
|
||
|
if conf.has('WITH_OPENVZ')
|
||
|
openvz_lib = static_library(
|
||
|
'virt_openvz',
|
||
|
[
|
||
|
openvz_sources,
|
||
|
],
|
||
|
dependencies: [
|
||
|
src_dep,
|
||
|
],
|
||
|
include_directories: [
|
||
|
conf_inc_dir,
|
||
|
],
|
||
|
)
|
||
|
endif
|