| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- option(
- 'xkb-config-root',
- type: 'string',
- description: 'The XKB config root [default=xkeyboard-config install path]',
- )
- option(
- 'xkb-config-versioned-extensions-path',
- type: 'string',
- description: 'Lookup path for system-wide XKB versioned data extensions [default=xkeyboard-config install path + .d]',
- )
- option(
- 'xkb-config-unversioned-extensions-path',
- type: 'string',
- description: 'Lookup path for system-wide XKB unversioned data extensions [default=xkeyboard-config install path - version + .d]',
- )
- option(
- 'xkb-config-extra-path',
- type: 'string',
- description: 'Extra lookup path for system-wide XKB data [default=$sysconfdir/xkb]',
- )
- option(
- 'x-locale-root',
- type: 'string',
- description: 'The X locale root [default=$datadir/X11/locale]',
- )
- option(
- 'bash-completion-path',
- type: 'string',
- description: 'Directory for bash completion scripts',
- )
- option(
- 'zsh-completion-path',
- type: 'string',
- description: 'Directory for zsh completion scripts',
- )
- option(
- 'default-rules',
- type: 'string',
- value: 'evdev',
- description: 'Default XKB ruleset',
- )
- option(
- 'default-model',
- type: 'string',
- value: 'pc105',
- description: 'Default XKB model',
- )
- option(
- 'default-layout',
- type: 'string',
- value: 'us',
- description: 'Default XKB layout',
- )
- option(
- 'default-variant',
- type: 'string',
- value: '',
- description: 'Default XKB variant',
- )
- option(
- 'default-options',
- type: 'string',
- value: '',
- description: 'Default XKB options',
- )
- option(
- 'enable-parser-auto-generation',
- type: 'boolean',
- value: true,
- description:
- 'Generate parser files from `.y` grammar files (requires bison); ' +
- 'if false, use pregenerated files shipped in the source tree',
- )
- option(
- 'enable-tools',
- type: 'boolean',
- value: true,
- description: 'Enable building tools',
- )
- option(
- 'enable-x11',
- type: 'boolean',
- value: true,
- description: 'Enable building the xkbcommon-x11 library',
- )
- option(
- 'enable-docs',
- type: 'boolean',
- value: false,
- description: 'Enable building the documentation',
- )
- option(
- 'enable-cool-uris',
- type: 'boolean',
- value: false,
- description: 'Enable creating redirections to maintain stable documentation pages',
- )
- option(
- 'enable-wayland',
- type: 'boolean',
- value: true,
- description: 'Enable support for Wayland utility programs (requires enable-tools)',
- )
- option(
- 'enable-xkbregistry',
- type: 'boolean',
- value: true,
- description: 'Enable building libxkbregistry',
- )
- option(
- 'enable-bash-completion',
- type: 'boolean',
- value: true,
- description: 'Enable installing bash completion scripts',
- )
- option(
- 'enable-zsh-completion',
- type: 'boolean',
- value: true,
- description: 'Enable installing zsh completion scripts',
- )
|