2017-07-25 12:57:42 -06:00
|
|
|
option(
|
|
|
|
'xkb-config-root',
|
|
|
|
type: 'string',
|
|
|
|
description: 'The XKB config root [default=xkeyboard-config install path]',
|
|
|
|
)
|
2020-07-09 16:50:02 -06:00
|
|
|
option(
|
|
|
|
'xkb-config-extra-path',
|
|
|
|
type: 'string',
|
|
|
|
description: 'Extra lookup path for system-wide XKB data [default=$sysconfdir/xkb]',
|
|
|
|
)
|
2017-07-25 12:57:42 -06:00
|
|
|
option(
|
|
|
|
'x-locale-root',
|
|
|
|
type: 'string',
|
|
|
|
description: 'The X locale root [default=$datadir/X11/locale]',
|
|
|
|
)
|
2023-09-29 12:44:06 -06:00
|
|
|
option(
|
|
|
|
'bash-completion-path',
|
|
|
|
type: 'string',
|
|
|
|
description: 'Directory for bash completion scripts'
|
|
|
|
)
|
2017-07-25 12:57:42 -06:00
|
|
|
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',
|
|
|
|
)
|
2021-10-08 07:51:10 -06:00
|
|
|
option(
|
|
|
|
'enable-tools',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
|
|
|
description: 'Enable building tools',
|
|
|
|
)
|
2017-07-25 12:57:42 -06:00
|
|
|
option(
|
|
|
|
'enable-x11',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
|
|
|
description: 'Enable building the xkbcommon-x11 library',
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'enable-docs',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
|
|
|
description: 'Enable building the documentation',
|
|
|
|
)
|
2023-06-27 12:31:01 -06:00
|
|
|
option(
|
|
|
|
'enable-cool-uris',
|
|
|
|
type: 'boolean',
|
|
|
|
value: false,
|
|
|
|
description: 'Enable creating redirections to maintain stable documentation pages',
|
|
|
|
)
|
2017-07-25 12:57:42 -06:00
|
|
|
option(
|
|
|
|
'enable-wayland',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
2021-10-08 07:51:10 -06:00
|
|
|
description: 'Enable support for Wayland utility programs (requires enable-tools)',
|
2017-07-25 12:57:42 -06:00
|
|
|
)
|
2020-05-11 22:09:50 -06:00
|
|
|
option(
|
|
|
|
'enable-xkbregistry',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
|
|
|
description: 'Enable building libxkbregistry',
|
|
|
|
)
|
2023-09-29 12:44:06 -06:00
|
|
|
option(
|
|
|
|
'enable-bash-completion',
|
|
|
|
type: 'boolean',
|
|
|
|
value: true,
|
|
|
|
description: 'Enable installing bash completion scripts',
|
|
|
|
)
|