2018-05-17 01:28:53 +02:00
|
|
|
hb_view_sources = [
|
|
|
|
'hb-view.cc',
|
|
|
|
]
|
|
|
|
|
|
|
|
hb_shape_sources = [
|
|
|
|
'hb-shape.cc',
|
|
|
|
]
|
|
|
|
|
|
|
|
hb_ot_shape_closure_sources = [
|
|
|
|
'hb-ot-shape-closure.cc',
|
|
|
|
]
|
|
|
|
|
|
|
|
hb_subset_cli_sources = [
|
|
|
|
'hb-subset.cc',
|
|
|
|
]
|
|
|
|
|
2020-06-03 23:52:10 +02:00
|
|
|
util_deps = [freetype_dep, cairo_dep, cairo_ft_dep, glib_dep]
|
|
|
|
|
2018-05-17 23:53:20 +02:00
|
|
|
if conf.get('HAVE_GLIB', 0) == 1
|
|
|
|
if conf.get('HAVE_FREETYPE', 0) == 1 and conf.get('HAVE_CAIRO_FT', 0) == 1
|
|
|
|
|
|
|
|
hb_view = executable('hb-view', hb_view_sources,
|
|
|
|
cpp_args: cpp_args,
|
2018-11-14 21:19:36 +01:00
|
|
|
include_directories: [incconfig, incsrc],
|
2021-04-23 18:37:58 +02:00
|
|
|
dependencies: [util_deps, chafa_dep],
|
2018-06-05 02:15:43 +02:00
|
|
|
link_with: [libharfbuzz],
|
|
|
|
install: true,
|
2018-05-17 23:53:20 +02:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
hb_shape = executable('hb-shape', hb_shape_sources,
|
|
|
|
cpp_args: cpp_args,
|
2018-11-14 21:19:36 +01:00
|
|
|
include_directories: [incconfig, incsrc],
|
2020-06-03 23:52:10 +02:00
|
|
|
dependencies: util_deps,
|
2018-06-05 02:15:43 +02:00
|
|
|
link_with: [libharfbuzz],
|
|
|
|
install: true,
|
2018-05-17 23:53:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
hb_subset = executable('hb-subset', hb_subset_cli_sources,
|
|
|
|
cpp_args: cpp_args,
|
2018-11-14 21:19:36 +01:00
|
|
|
include_directories: [incconfig, incsrc],
|
2020-06-03 23:52:10 +02:00
|
|
|
dependencies: util_deps,
|
2018-06-05 02:15:43 +02:00
|
|
|
link_with: [libharfbuzz, libharfbuzz_subset],
|
|
|
|
install: true,
|
2018-05-17 23:53:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
hb_ot_shape_closure = executable('hb-ot-shape-closure', hb_ot_shape_closure_sources,
|
|
|
|
cpp_args: cpp_args,
|
2018-11-14 21:19:36 +01:00
|
|
|
include_directories: [incconfig, incsrc],
|
2020-06-03 23:52:10 +02:00
|
|
|
dependencies: util_deps,
|
2018-06-05 02:15:43 +02:00
|
|
|
link_with: [libharfbuzz],
|
|
|
|
install: true,
|
2018-05-17 23:53:20 +02:00
|
|
|
)
|
2018-11-12 16:36:27 +01:00
|
|
|
else
|
|
|
|
# Disable tests that use this
|
|
|
|
hb_shape = disabler()
|
|
|
|
hb_subset = disabler()
|
2018-06-05 02:15:43 +02:00
|
|
|
endif
|