blob: 69850b834d01d765e0c8f42259d1e11837fd1673 [file] [log] [blame]
Haibo Huangbffa8492020-09-08 17:10:03 -07001option(
2 'xkb-config-root',
3 type: 'string',
4 description: 'The XKB config root [default=xkeyboard-config install path]',
5)
6option(
7 'xkb-config-extra-path',
8 type: 'string',
9 description: 'Extra lookup path for system-wide XKB data [default=$sysconfdir/xkb]',
10)
11option(
12 'x-locale-root',
13 type: 'string',
14 description: 'The X locale root [default=$datadir/X11/locale]',
15)
16option(
17 'default-rules',
18 type: 'string',
19 value: 'evdev',
20 description: 'Default XKB ruleset',
21)
22option(
23 'default-model',
24 type: 'string',
25 value: 'pc105',
26 description: 'Default XKB model',
27)
28option(
29 'default-layout',
30 type: 'string',
31 value: 'us',
32 description: 'Default XKB layout',
33)
34option(
35 'default-variant',
36 type: 'string',
37 value: '',
38 description: 'Default XKB variant',
39)
40option(
41 'default-options',
42 type: 'string',
43 value: '',
44 description: 'Default XKB options',
45)
46option(
Yuichiro Hanadaa36f08b2022-04-21 21:57:38 +090047 'enable-tools',
48 type: 'boolean',
49 value: true,
50 description: 'Enable building tools',
51)
52option(
Haibo Huangbffa8492020-09-08 17:10:03 -070053 'enable-x11',
54 type: 'boolean',
55 value: true,
56 description: 'Enable building the xkbcommon-x11 library',
57)
58option(
59 'enable-docs',
60 type: 'boolean',
61 value: true,
62 description: 'Enable building the documentation',
63)
64option(
65 'enable-wayland',
66 type: 'boolean',
67 value: true,
Yuichiro Hanadaa36f08b2022-04-21 21:57:38 +090068 description: 'Enable support for Wayland utility programs (requires enable-tools)',
Haibo Huangbffa8492020-09-08 17:10:03 -070069)
70option(
71 'enable-xkbregistry',
72 type: 'boolean',
73 value: true,
74 description: 'Enable building libxkbregistry',
75)