harfbuzz/test/threads/meson.build

29 lines
691 B
Meson
Raw Normal View History

2022-06-01 15:55:59 +02:00
test('shape_threads', executable('hb-shape-threads', 'hb-shape-threads.cc',
2022-05-28 00:23:12 +02:00
dependencies: [
2022-05-28 01:32:32 +02:00
freetype_dep, thread_dep
2022-05-28 00:23:12 +02:00
],
cpp_args: [],
include_directories: [incconfig, incsrc],
link_with: [libharfbuzz],
install: false,
),
workdir: meson.current_source_dir() / '..' / '..',
2022-05-30 13:12:12 +02:00
timeout: 300,
2022-05-28 00:53:25 +02:00
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'],
)