tools: some minor changes to xkbcli
[platform/upstream/libxkbcommon.git] / meson_options.txt
1 option(
2     'xkb-config-root',
3     type: 'string',
4     description: 'The XKB config root [default=xkeyboard-config install path]',
5 )
6 option(
7     'x-locale-root',
8     type: 'string',
9     description: 'The X locale root [default=$datadir/X11/locale]',
10 )
11 option(
12     'default-rules',
13     type: 'string',
14     value: 'evdev',
15     description: 'Default XKB ruleset',
16 )
17 option(
18     'default-model',
19     type: 'string',
20     value: 'pc105',
21     description: 'Default XKB model',
22 )
23 option(
24     'default-layout',
25     type: 'string',
26     value: 'us',
27     description: 'Default XKB layout',
28 )
29 option(
30     'default-variant',
31     type: 'string',
32     value: '',
33     description: 'Default XKB variant',
34 )
35 option(
36     'default-options',
37     type: 'string',
38     value: '',
39     description: 'Default XKB options',
40 )
41 option(
42     'enable-x11',
43     type: 'boolean',
44     value: true,
45     description: 'Enable building the xkbcommon-x11 library',
46 )
47 option(
48     'enable-docs',
49     type: 'boolean',
50     value: true,
51     description: 'Enable building the documentation',
52 )
53 option(
54     'enable-wayland',
55     type: 'boolean',
56     value: true,
57     description: 'Enable support for Wayland utility programs',
58 )
59 option(
60     'enable-xkbregistry',
61     type: 'boolean',
62     value: true,
63     description: 'Enable building libxkbregistry',
64 )