1
0
Fork 0
gnome-system-monitor/scripts/meson.build
Daniel Baumann f92ba00cb1
Adding upstream version 48.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:03:59 +02:00

17 lines
333 B
Meson

commands = [
'renice',
'kill',
'taskset',
]
foreach command : commands
executable('gsm-' + command,
'gsm_execute_helper.c',
dependencies: [
glib,
],
c_args: '-DCOMMAND="@0@"'.format(command),
install: true,
install_dir: join_paths(get_option('libexecdir'), meson.project_name())
)
endforeach