mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 10:23:09 +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>
27 lines
403 B
Meson
27 lines
403 B
Meson
test_driver_sources = [
|
|
'test_driver.c',
|
|
]
|
|
|
|
test_driver_assets = [
|
|
'test-screenshot.png',
|
|
]
|
|
|
|
if conf.has('WITH_TEST')
|
|
test_lib = static_library(
|
|
'virt_test',
|
|
[
|
|
test_driver_sources,
|
|
],
|
|
dependencies: [
|
|
src_dep,
|
|
],
|
|
include_directories: [
|
|
conf_inc_dir,
|
|
],
|
|
)
|
|
|
|
libvirt_libs += test_lib
|
|
|
|
install_data(test_driver_assets, install_dir: pkgdatadir)
|
|
endif
|