File: meson.build

package info (click to toggle)
tofi 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,544 kB
  • sloc: ansic: 6,818; xml: 409; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 406 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
tests = [
  'config',
  'utf8'
]

foreach test_file : tests
  t = executable(
    test_file,
    files(test_file + '.c', 'tap.c'), common_sources, wl_proto_src, wl_proto_headers,
    include_directories: ['../src'],
    dependencies: [librt, libm, freetype, harfbuzz, cairo, pangocairo, wayland_client, xkbcommon, glib, gio_unix],
    install: false
    )

  test(test_file, t, protocol: 'tap')
endforeach