gnome-control-center/shell/completions/meson.build
Iñigo Martínez 32edd6789e 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
2018-01-17 20:09:35 -02:00

12 lines
338 B
Meson

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')
)