File: meson.build

package info (click to toggle)
libgnomekbd 3.28.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,696 kB
  • sloc: ansic: 5,919; makefile: 172; sh: 26; python: 14; javascript: 5
file content (17 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
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