mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-22 13:34:07 +03:00
01acaa3836
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
26 lines
604 B
Meson
26 lines
604 B
Meson
fs = import('fs')
|
|
|
|
desktop_file = files('virt-manager.desktop.in')
|
|
|
|
appdata_file = files('virt-manager.appdata.xml.in')
|
|
|
|
install_data(
|
|
'org.virt-manager.virt-manager.gschema.xml',
|
|
install_dir: datadir / 'glib-2.0' / 'schemas',
|
|
)
|
|
|
|
bash_completion_template = files('bash-completion.sh.in')
|
|
|
|
foreach script: ['virt-install', 'virt-clone', 'virt-xml']
|
|
name = fs.name(script)
|
|
configure_file(
|
|
input: bash_completion_template,
|
|
output: name,
|
|
configuration: {'SCRIPTNAME': name},
|
|
install: true,
|
|
install_dir: datadir / 'bash-completion' / 'completions',
|
|
)
|
|
endforeach
|
|
|
|
subdir('icons')
|