build: Port to meson build system
Meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. https://bugzilla.gnome.org/show_bug.cgi?id=785414
This commit is contained in:
parent
d7012d0337
commit
32edd6789e
89 changed files with 3043 additions and 32 deletions
12
shell/completions/meson.build
Normal file
12
shell/completions/meson.build
Normal file
|
@ -0,0 +1,12 @@
|
|||
completion_conf = configuration_data()
|
||||
completion_conf.set('PANELS', ' '.join(panels_list))
|
||||
|
||||
desktop = 'gnome-control-center'
|
||||
|
||||
desktop_in = configure_file(
|
||||
input: desktop + '.in',
|
||||
output: desktop,
|
||||
configuration: completion_conf,
|
||||
install: true,
|
||||
install_dir: join_paths(control_center_datadir, 'bash-completion', 'completions')
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue