meson.build 691 B

12345678910111213141516171819202122232425262728
  1. test('shape_threads', executable('hb-shape-threads', 'hb-shape-threads.cc',
  2. dependencies: [
  3. freetype_dep, thread_dep
  4. ],
  5. cpp_args: [],
  6. include_directories: [incconfig, incsrc],
  7. link_with: [libharfbuzz],
  8. install: false,
  9. ),
  10. workdir: meson.current_source_dir() / '..' / '..',
  11. timeout: 300,
  12. suite: ['threads', 'slow'],
  13. )
  14. test('subset_threads', executable('hb-subset-threads', 'hb-subset-threads.cc',
  15. dependencies: [
  16. thread_dep
  17. ],
  18. cpp_args: [],
  19. include_directories: [incconfig, incsrc],
  20. link_with: [libharfbuzz, libharfbuzz_subset],
  21. install: false,
  22. ),
  23. workdir: meson.current_source_dir() / '..' / '..',
  24. timeout: 300,
  25. suite: ['threads', 'slow'],
  26. )