diff options
Diffstat (limited to 'dist/fontconfig/meson_options.txt')
-rw-r--r-- | dist/fontconfig/meson_options.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dist/fontconfig/meson_options.txt b/dist/fontconfig/meson_options.txt index b70edf160..1a95241f4 100644 --- a/dist/fontconfig/meson_options.txt +++ b/dist/fontconfig/meson_options.txt @@ -13,3 +13,29 @@ option('tools', type : 'feature', value : 'auto', yield : true, description: 'Build command-line tools (fc-list, fc-query, etc.)') option('cache-build', type : 'feature', value : 'enabled', description: 'Run fc-cache on install') + +# Defaults +option('default-hinting', type: 'combo', choices: ['none', 'slight', 'medium', 'full'], value: 'slight', + description: 'Preferred hinting configuration') + +option('default-fonts-dirs', type: 'array', value: ['yes'], + description: 'Use fonts from DIR1,DIR2,... when config is busted (set to "yes" for generic system-specific defaults)') + +option('additional-fonts-dirs', type: 'array', value: ['yes'], + description: 'Find additional fonts in DIR1,DIR2,... (set to "yes" for generic system-specific defaults)') + +# Configuration paths +option('cache-dir', type: 'string', value: 'default', + description: 'Use DIR to store cache files (default=LOCALSTATEDIR/cache/fontconfig)') + +option('template-dir', type: 'string', value: 'default', + description: 'Use DIR to store the configuration template files (default=DATADIR/fontconfig/conf.avail)') + +option('baseconfig-dir', type: 'string', value: 'default', + description: 'Use DIR to store the base configuration files (default=SYSCONFDIR/fonts)') + +option('config-dir', type: 'string', value: 'default', + description: 'Use DIR to store active configuration files (default=BASECONFIGDIR/conf.d)') + +option('xml-dir', type: 'string', value: 'default', + description: 'Use DIR to store XML schema files (default=DATADIR/xml/fontconfig)') |