blob: cb2213cf07b1d9b93af4ef4f12783e976f66da4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|