summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/freetype-src/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/freetype2/freetype-src/meson_options.txt')
-rw-r--r--Build/source/libs/freetype2/freetype-src/meson_options.txt40
1 files changed, 17 insertions, 23 deletions
diff --git a/Build/source/libs/freetype2/freetype-src/meson_options.txt b/Build/source/libs/freetype2/freetype-src/meson_options.txt
index 375eb714ebd..74ed16baa12 100644
--- a/Build/source/libs/freetype2/freetype-src/meson_options.txt
+++ b/Build/source/libs/freetype2/freetype-src/meson_options.txt
@@ -2,7 +2,7 @@
# meson_options.txt
#
-# Copyright (C) 2020-2021 by
+# Copyright (C) 2020 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
@@ -12,42 +12,36 @@
# fully.
-option('brotli',
- type: 'feature',
+option('zlib',
+ type: 'combo',
+ choices: ['disabled', 'auto', 'builtin', 'system'],
value: 'auto',
- description: 'Use Brotli library to support decompressing WOFF2 fonts')
+ description: 'Support reading gzip-compressed font files.')
option('bzip2',
type: 'feature',
value: 'auto',
- description: 'Support reading bzip2-compressed font files')
+ description: 'Support reading bzip2-compressed font files.')
-option('harfbuzz',
+option('png',
type: 'feature',
value: 'auto',
- description: 'Use Harfbuzz library to improve auto-hinting;'
- + ' if available, many glyphs not directly addressable'
- + ' by a font\'s character map will be hinted also')
+ description: 'Support color bitmap glyph formats in the PNG format.'
+ + 'Requires libpng.')
-option('mmap',
+option('harfbuzz',
type: 'feature',
value: 'auto',
- description: 'Use mmap() to open font files for faster parsing')
+ description: 'Use Harfbuzz library to improve auto-hinting.'
+ + ' If available, many glyphs not directly addressable'
+ + ' by a font\'s character map will be hinted also.')
-option('png',
+option('brotli',
type: 'feature',
value: 'auto',
- description: 'Support color bitmap glyph formats in the PNG format;'
- + ' requires libpng')
-
-option('tests',
- type: 'feature',
- value: 'disabled',
- description: 'Enable FreeType unit and regression tests')
+ description: 'Use Brotli library to support decompressing WOFF2 fonts.')
-option('zlib',
+option('mmap',
type: 'feature',
value: 'auto',
- description: 'Support reading gzip-compressed font files')
-
-# EOF
+ description: 'Use mmap() to open font files for faster parsing.')