summaryrefslogtreecommitdiffstats
path: root/scripts/meson.build
blob: 99e80942e52909eb263c30443390563b626001dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
commands = [
  'renice',
  'kill',
]

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