mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 14:35:25 +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>
22 lines
274 B
Meson
22 lines
274 B
Meson
cpu_sources = [
|
|
'cpu.c',
|
|
'cpu_arm.c',
|
|
'cpu_map.c',
|
|
'cpu_ppc64.c',
|
|
'cpu_s390.c',
|
|
'cpu_x86.c',
|
|
]
|
|
|
|
cpu_lib = static_library(
|
|
'virt_cpu',
|
|
cpu_sources,
|
|
dependencies: [
|
|
src_dep,
|
|
],
|
|
include_directories: [
|
|
conf_inc_dir,
|
|
],
|
|
)
|
|
|
|
libvirt_libs += cpu_lib
|