File: meson_options.txt

package info (click to toggle)
fcft 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,248 kB
  • sloc: ansic: 8,160; python: 115; sh: 44; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 983 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
option('svg-backend', type: 'combo', choices: ['none', 'nanosvg'],
       value: 'nanosvg',
       description: 'enables support for SVG glyphs (none: disable, nanosvg: bundled)')
option('system-nanosvg', type: 'feature', value: 'disabled',
       description: 'use system\'s nanosvg instead of the bundled version')
option(
    'docs', type: 'feature',
    description: 'Build and install documentation (man pages, readme, changelog, license etc).')
option(
    'grapheme-shaping', type: 'feature',
    description: 'enables shaping of individual grapheme clusters')
option(
    'run-shaping', type: 'feature',
    description: 'enables shaping of whole text runs. Imples -Dgrapheme-shaping=enabled')

# Test-related options
option('test-text-shaping', type: 'boolean', value: false,
       description: 'include text shaping tests (requires an emoji font to be installed)')


option('examples', type: 'boolean', value: false,
       description: 'build a Wayland example program')