Update meson summary

Include builtin font callbacks and Cairo integration
in the configuration summary.
This commit is contained in:
Matthias Clasen 2023-01-24 19:06:15 -05:00 committed by Behdad Esfahbod
parent 192361cb4d
commit ac969fffa2
1 changed files with 3 additions and 1 deletions

View File

@ -396,7 +396,8 @@ build_summary = {
'ICU': conf.get('HAVE_ICU', 0) == 1, 'ICU': conf.get('HAVE_ICU', 0) == 1,
}, },
'Font callbacks (the more the merrier)': 'Font callbacks (the more the merrier)':
{'FreeType': conf.get('HAVE_FREETYPE', 0) == 1, {'Builtin' : true,
'FreeType': conf.get('HAVE_FREETYPE', 0) == 1,
}, },
'Dependencies used for command-line utilities': 'Dependencies used for command-line utilities':
{'Cairo': conf.get('HAVE_CAIRO', 0) == 1, {'Cairo': conf.get('HAVE_CAIRO', 0) == 1,
@ -413,6 +414,7 @@ build_summary = {
'Other features': 'Other features':
{'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1, {'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1,
'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1, 'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1,
'Cairo integration': conf.get('HAVE_CAIRO', 0) == 1,
'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1, 'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1,
'Experimental APIs': conf.get('HB_EXPERIMENTAL_API', 0) == 1, 'Experimental APIs': conf.get('HB_EXPERIMENTAL_API', 0) == 1,
}, },