summaryrefslogtreecommitdiff
path: root/tools/meson.build
blob: e73131ce6203600c5364168ad9bb1a2817616c96 (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,
    'msm_execute_helper.c',
    dependencies: [
      glib,
    ],
    c_args: '-DCOMMAND="@0@"'.format(command),
    install: true,
    install_dir: join_paths(get_option('libexecdir'), meson.project_name())
  )
endforeach