mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 06:25: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
447 B
Meson
29 lines
447 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,
|
|
],
|
|
)
|
|
|
|
libvirt_libs += openvz_lib
|
|
endif
|
|
|
|
if conf.has('WITH_OPENVZ')
|
|
used_sym_files += 'libvirt_openvz.syms'
|
|
else
|
|
sym_files += 'libvirt_openvz.syms'
|
|
endif
|