* meson.build: Add support for compiling with error strings.

* meson_options.txt: Document it.
master
Benoit Pierre 3 months ago committed by Alexei Podtelezhnikov
parent 0dd4eef68f
commit f4c2a44ea9
  1. 4
      meson.build
  2. 5
      meson_options.txt

@ -363,6 +363,10 @@ if brotli_dep.found()
ft2_deps += [brotli_dep]
endif
if get_option('error_strings')
ftoption_command += ['--enable=FT_CONFIG_OPTION_ERROR_STRINGS']
endif
# We can now generate `ftoption.h`.
ftoption_h = custom_target('ftoption.h',
input: 'include/freetype/config/ftoption.h',

@ -52,4 +52,9 @@ option('zlib',
'disabled', 'enabled' ],
description: 'Support reading gzip-compressed font files')
option('error_strings',
type: 'boolean',
value: false,
description: 'Enable support for meaningful error descriptions')
# EOF

Loading…
Cancel
Save