HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
382 B
10 lines
382 B
5 years ago
|
google_benchmark = subproject('google-benchmark')
|
||
|
google_benchmark_dep = google_benchmark.get_variable('google_benchmark_dep')
|
||
|
|
||
|
benchmark('perf', executable('perf', 'perf.cc',
|
||
|
dependencies : [google_benchmark_dep, freetype_dep],
|
||
|
include_directories: [incconfig, incsrc],
|
||
|
link_with: [libharfbuzz],
|
||
|
install: false,
|
||
|
), workdir: meson.current_source_dir() / '..', timeout: 100)
|