• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# meson_options.txt
3#
4
5# Copyright (C) 2020 by
6# David Turner, Robert Wilhelm, and Werner Lemberg.
7#
8# This file is part of the FreeType project, and may only be used, modified,
9# and distributed under the terms of the FreeType project license,
10# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
11# indicate that you have read the license and understand and accept it
12# fully.
13
14
15option('zlib',
16  type: 'combo',
17  choices: ['disabled', 'auto', 'builtin', 'system'],
18  value: 'auto',
19  description: 'Support reading gzip-compressed font files.')
20
21option('bzip2',
22  type: 'feature',
23  value: 'auto',
24  description: 'Support reading bzip2-compressed font files.')
25
26option('png',
27  type: 'feature',
28  value: 'auto',
29  description: 'Support color bitmap glyph formats in the PNG format.'
30               + 'Requires libpng.')
31
32option('harfbuzz',
33  type: 'feature',
34  value: 'auto',
35  description: 'Use Harfbuzz library to improve auto-hinting.'
36               + ' If available, many glyphs not directly addressable'
37               + ' by a font\'s character map will be hinted also.')
38
39option('brotli',
40  type: 'feature',
41  value: 'auto',
42  description: 'Use Brotli library to support decompressing WOFF2 fonts.')
43
44option('mmap',
45  type: 'feature',
46  value: 'auto',
47  description: 'Use mmap() to open font files for faster parsing.')
48