blob: f2070734d1dfd9dcd31da5229ffa9ae5bc28123d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
test_names = [
'matekbd-indicator-test',
'matekbd-keyboard-drawing-test',
'matekbd-status-test',
]
foreach test_name : test_names
test_exec = executable(
test_name,
test_name + '.c',
dependencies: libmatekbdui_dep,
c_args: [
'-DGNOMELOCALEDIR="@0@"'.format (get_option('prefix') / get_option('datadir') / 'locale'),
],
build_by_default: true,
)
endforeach
|