File: meson.build

package info (click to toggle)
harfbuzz 12.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,460 kB
  • sloc: ansic: 77,934; cpp: 62,153; python: 4,962; xml: 4,651; sh: 426; makefile: 105
file content (28 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (4)
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
test('shape_threads', executable('hb-shape-threads', 'hb-shape-threads.cc',
  dependencies: [
    freetype_dep, thread_dep
  ],
  cpp_args: [],
  include_directories: [incconfig, incsrc],
  link_with: [libharfbuzz],
  install: false,
  ),
  workdir: meson.current_source_dir() / '..' / '..',
  timeout: 300,
  suite: ['threads', 'slow'],
)


test('subset_threads', executable('hb-subset-threads', 'hb-subset-threads.cc',
  dependencies: [
    thread_dep
  ],
  cpp_args: [],
  include_directories: [incconfig, incsrc],
  link_with: [libharfbuzz, libharfbuzz_subset],
  install: false,
  ),
  workdir: meson.current_source_dir() / '..' / '..',
  timeout: 300,
  suite: ['threads', 'slow'],
)