summaryrefslogtreecommitdiff
path: root/test/meson.build
blob: 179c1cf0f9b7269ab30d45639dfdd5a741d71224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test_names = [
  'gkbd-indicator-test',
  'gkbd-keyboard-drawing-test',
  'gkbd-status-test',
]

foreach test_name : test_names
  test_exec = executable(
    test_name,
    test_name + '.c',
    dependencies: libgnomekbdui_dep,
    c_args: [
      '-DGNOMELOCALEDIR="@0@"'.format (get_option('prefix') / get_option('datadir') / 'locale'),
    ],
    build_by_default: true,
  )
endforeach