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
12 lines
338 B
Meson
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')
|
|
)
|