summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 5ac89073ac5399debcdccdde2c1c61f797dfa3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# GDK backends
option('enable-x11-backend', type: 'boolean', value: 'true',
  description : 'Enable the X11 gdk backend')
option('enable-wayland-backend', type: 'boolean', value: 'true',
  description : 'Enable the wayland gdk backend')
option('enable-broadway-backend', type: 'boolean', value: 'false',
  description : 'Enable the broadway (HTML5) gdk backend')
option('enable-win32-backend', type: 'boolean', value: 'false',
  description : 'Enable the Windows gdk backend')
option('enable-quartz-backend', type: 'boolean', value: 'false',
  description : 'Enable the macOS gdk backend')

# Optional dependencies
option('enable-vulkan', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
  description : 'Enable support for the Vulkan graphics API')
option('enable-xinerama', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
  description : 'Enable support for the Xinerama extension')
option('enable-cloudproviders', type: 'boolean', value: false,
  description : 'Enable the cloudproviders support')

# Print backends
option('print-backends', type : 'string', value : 'cups,papi',
  description : 'Build the specified print backends (comma-separated list, "all", or "none")')
option('colord', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
  description : 'Build colord support for the CUPS printing backend')

# Modules
option('dynamic-modules', type: 'boolean', value : true,
  description : 'Allow dynamic module loading')
option('included-immodules', type: 'string', value : 'none',
  description : 'Build the specified input methods (comma-separated list, "all", or "none")')

# Documentation and introspection
option('documentation', type: 'boolean', value: 'false',
  description : 'Build API reference and tools documentation')
option('man-pages', type: 'boolean', value: 'false',
  description : 'Build man pages for installed tools')
option('introspection', type: 'boolean', value: 'true',
  description : 'Build introspection data (requires gobject-introspection)')

# Demos and binaries
option('demos', type: 'boolean', value: 'true',
  description : 'Build demos and example programs')
option('build-tests', type: 'boolean', value: 'true',
  description : 'Build tests')
option('install-tests', type: 'boolean', value: 'false',
  description : 'Install tests')