File: meson.build

package info (click to toggle)
kmscon 9.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 5,696 kB
  • sloc: ansic: 30,211; sh: 105; python: 89; makefile: 16
file content (28 lines) | stat: -rw-r--r-- 593 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-FileCopyrightText: 2022 Aetf <aetf@unlimited-code.works>
#
# SPDX-License-Identifier: MIT

foreach name, deps : {
  'output': [uterm_deps],
  'vt': [uterm_deps],
  'input': [uterm_deps],
  'key': [],
}
  deps += [
    shl_deps,
    conf_deps,
    xkbcommon_deps,
  ]
  test_name = f'test_@name@'
  exe = executable(test_name, f'@test_name@.c',
    dependencies: deps,
  )
endforeach

test_shl = executable('test_shl', 'test_shl.c',
  dependencies: [shl_deps, check_deps],
)
test('test_shl', test_shl,
  protocol: 'tap',
  env: {'CK_TAP_LOG_FILE_NAME': '-', 'CK_VERBOSITY': 'silent'},
)