mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-22 13:34:07 +03:00
03e35a7c29
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
32 lines
498 B
Meson
32 lines
498 B
Meson
virtinst_devices_sources = files(
|
|
'__init__.py',
|
|
'audio.py',
|
|
'char.py',
|
|
'controller.py',
|
|
'device.py',
|
|
'disk.py',
|
|
'filesystem.py',
|
|
'graphics.py',
|
|
'hostdev.py',
|
|
'input.py',
|
|
'interface.py',
|
|
'iommu.py',
|
|
'memballoon.py',
|
|
'memory.py',
|
|
'panic.py',
|
|
'redirdev.py',
|
|
'rng.py',
|
|
'shmem.py',
|
|
'smartcard.py',
|
|
'sound.py',
|
|
'tpm.py',
|
|
'video.py',
|
|
'vsock.py',
|
|
'watchdog.py',
|
|
)
|
|
|
|
install_data(
|
|
virtinst_devices_sources,
|
|
install_dir: pkgdir / 'virtinst' / 'devices',
|
|
)
|