mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
25 lines
375 B
Meson
25 lines
375 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,
|
||
|
],
|
||
|
)
|
||
|
|
||
|
install_data(test_driver_assets, install_dir: pkgdatadir)
|
||
|
endif
|