[perf] Bikeshedding

This commit is contained in:
Behdad Esfahbod 2025-03-21 17:36:43 -06:00
parent cfb962d73c
commit 0eeb6ccb42
6 changed files with 14 additions and 14 deletions

View file

@ -38,3 +38,17 @@ foreach source : benchmarks_subset
install: false,
), workdir: meson.current_source_dir() / '..', timeout: 100)
endforeach
hb_draw_all = executable('hb-draw-all', ['hb-draw-all.c'],
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
link_with: [libharfbuzz],
)
meson.override_find_program('hb-draw-all', hb_draw_all)
hb_paint_all = executable('hb-paint-all', ['hb-paint-all.c'],
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
link_with: [libharfbuzz],
)
meson.override_find_program('hb-paint-all', hb_paint_all)

View file

@ -1,6 +0,0 @@
hb_draw_all = executable('hb-draw-all', ['hb-draw-all.c'],
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
link_with: [libharfbuzz],
)
meson.override_find_program('hb-draw-all', hb_draw_all)

View file

@ -3,5 +3,3 @@ subdir('fuzzing')
subdir('threads')
subdir('shape')
subdir('api')
subdir('draw')
subdir('paint')

View file

@ -1,6 +0,0 @@
hb_paint_all = executable('hb-paint-all', ['hb-paint-all.c'],
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
link_with: [libharfbuzz],
)
meson.override_find_program('hb-paint-all', hb_paint_all)