harfbuzz/util/meson.build

75 lines
1.9 KiB
Meson
Raw Permalink Normal View History

hb_view_sources = [
'hb-view.cc',
]
hb_shape_sources = [
'hb-shape.cc',
]
2023-01-19 20:40:27 +01:00
hb_info_sources = [
'hb-info.cc',
]
hb_ot_shape_closure_sources = [
'hb-ot-shape-closure.cc',
]
hb_subset_cli_sources = [
'hb-subset.cc',
]
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_CAIRO', 0) == 1
2018-05-17 23:53:20 +02:00
hb_view = executable('hb-view', hb_view_sources,
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
dependencies: [util_deps, chafa_dep],
link_with: [libharfbuzz, libharfbuzz_cairo],
2018-06-05 02:15:43 +02:00
install: true,
2018-05-17 23:53:20 +02:00
)
meson.override_find_program('hb-view', hb_view)
2018-05-17 23:53:20 +02:00
endif
hb_shape = executable('hb-shape', hb_shape_sources,
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
dependencies: util_deps,
2018-06-05 02:15:43 +02:00
link_with: [libharfbuzz],
install: true,
2018-05-17 23:53:20 +02:00
)
meson.override_find_program('hb-shape', hb_shape)
2018-05-17 23:53:20 +02:00
hb_info = executable('hb-info', [hb_info_sources, gobject_enums_h],
2023-01-19 20:40:27 +01:00
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
dependencies: [util_deps, libharfbuzz_gobject_dep, chafa_dep],
2023-01-23 00:02:51 +01:00
link_with: [libharfbuzz],
2023-01-19 20:40:27 +01:00
install: true,
)
meson.override_find_program('hb-info', hb_info)
2018-05-17 23:53:20 +02:00
hb_subset = executable('hb-subset', hb_subset_cli_sources,
cpp_args: cpp_args,
include_directories: [incconfig, incsrc],
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
)
meson.override_find_program('hb-subset', hb_subset)
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,
include_directories: [incconfig, incsrc],
dependencies: util_deps,
2018-06-05 02:15:43 +02:00
link_with: [libharfbuzz],
install: true,
2018-05-17 23:53:20 +02:00
)
meson.override_find_program('hb-ot-shape-closure', hb_ot_shape_closure)
else
# Disable tests that use this
hb_shape = disabler()
hb_subset = disabler()
2018-06-05 02:15:43 +02:00
endif