From 93f8cbf4faa987780f5fda76c595ee2aa74e824b Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 15 Mar 2025 19:20:09 -0600 Subject: [PATCH] [meson] Add missing .hh files to sources Manually checked with find and grep... --- src/meson.build | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/meson.build b/src/meson.build index 5047e11a9..7eee64b4c 100644 --- a/src/meson.build +++ b/src/meson.build @@ -202,6 +202,7 @@ hb_base_sources = files( 'hb-ot-os2-unicode-ranges.hh', 'hb-ot-post-macroman.hh', 'hb-ot-post-table.hh', + 'hb-ot-post-table-v2subset.hh', 'hb-ot-shaper-arabic-fallback.hh', 'hb-ot-shaper-arabic-joining-list.hh', 'hb-ot-shaper-arabic-pua.hh', @@ -244,7 +245,9 @@ hb_base_sources = files( 'hb-ot-var-varc-table.hh', 'hb-ot-var.cc', 'hb-ot-vorg-table.hh', + 'hb-priority-queue.hh', 'hb-pool.hh', + 'hb-repacker.hh', 'hb-sanitize.hh', 'hb-serialize.hh', 'hb-set-digest.hh', @@ -346,6 +349,7 @@ hb_wasm_sources = files( 'hb-wasm-api-common.hh', 'hb-wasm-api-face.hh', 'hb-wasm-api-font.hh', + 'hb-wasm-api-list.hh', 'hb-wasm-api-shape.hh', 'hb-wasm-shape.cc', ) @@ -353,10 +357,10 @@ hb_wasm_headers = files() # System-dependent sources and headers -hb_coretext_sources = files('hb-coretext.cc', 'hb-coretext-shape.cc', 'hb-coretext-font.cc') +hb_coretext_sources = files('hb-coretext.cc', 'hb-coretext.hh', 'hb-coretext-shape.cc', 'hb-coretext-font.cc') hb_coretext_headers = files('hb-coretext.h') -hb_directwrite_sources = files('hb-directwrite.cc', 'hb-directwrite-shape.cc') +hb_directwrite_sources = files('hb-directwrite.cc', 'hb-directwrite.hh', 'hb-directwrite-shape.cc') hb_directwrite_headers = files('hb-directwrite.h') hb_gdi_sources = files('hb-gdi.cc') @@ -665,6 +669,7 @@ if conf.get('HAVE_CAIRO', 0) == 1 hb_cairo_sources = [ 'hb-cairo.cc', 'hb-cairo-utils.cc', + 'hb-cairo-utils.hh', 'hb-static.cc' ]