Add meson option to set default bash_completion installation

location

These changes introduce a new meson option to set the default
location for bash_completion. This will enable the installation
of completion files into the system location.
This commit is contained in:
Dhanuka Warusadura 2021-03-19 12:15:33 +05:30 committed by Daiki Ueno
parent 8b1936b46f
commit 6b4a60b377

View File

@ -5,3 +5,4 @@ option('vapi', type: 'boolean', value: true, description: 'Create VAPI file.')
option('gtk_doc', type: 'boolean', value: true, description: 'Build reference documentation using gtk-doc')
option('introspection', type: 'boolean', value: true, description: 'Create GIR file.')
option('bashcompdir', type: 'string', value: '', description: 'Override default location for bash completion files')
option('bash_completion', type: 'feature', value: 'auto', description: 'Install bash completion files')