summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..0e166b1
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,58 @@
+option(
+ 'xkb-config-root',
+ type: 'string',
+ description: 'The XKB config root [default=xkeyboard-config install path]',
+)
+option(
+ 'x-locale-root',
+ type: 'string',
+ description: 'The X locale root [default=$datadir/X11/locale]',
+)
+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-x11',
+ type: 'boolean',
+ value: true,
+ description: 'Enable building the xkbcommon-x11 library',
+)
+option(
+ 'enable-docs',
+ type: 'boolean',
+ value: true,
+ description: 'Enable building the documentation',
+)
+option(
+ 'enable-wayland',
+ type: 'boolean',
+ value: true,
+ description: 'Enable support for Wayland utility programs',
+)