1option( 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( 47 'enable-x11', 48 type: 'boolean', 49 value: true, 50 description: 'Enable building the xkbcommon-x11 library', 51) 52option( 53 'enable-docs', 54 type: 'boolean', 55 value: true, 56 description: 'Enable building the documentation', 57) 58option( 59 'enable-wayland', 60 type: 'boolean', 61 value: true, 62 description: 'Enable support for Wayland utility programs', 63) 64option( 65 'enable-xkbregistry', 66 type: 'boolean', 67 value: true, 68 description: 'Enable building libxkbregistry', 69) 70