1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-22 17:34:18 +03:00
libvirt/tools/bash-completion/meson.build

17 lines
347 B
Meson
Raw Permalink Normal View History

completion_commands = [
'virsh',
'virt-admin',
]
foreach command : completion_commands
completion_conf = configuration_data({
'command': command,
})
completion = configure_file(
input: 'vsh.in',
output: command,
configuration: completion_conf,
)
install_data(completion, install_dir: bash_completion_dir)
endforeach