2018-02-14 13:55:32 +00:00
|
|
|
# GDK backends
|
2018-02-14 14:04:04 +00:00
|
|
|
option('x11-backend', type: 'boolean', value: true,
|
|
|
|
description : 'Enable the X11 gdk backend (only when building on Linux or macOS)')
|
|
|
|
option('wayland-backend', type: 'boolean', value: true,
|
|
|
|
description : 'Enable the wayland gdk backend (only when building on Linux)')
|
|
|
|
option('broadway-backend', type: 'boolean', value: false,
|
2017-03-20 11:44:04 +00:00
|
|
|
description : 'Enable the broadway (HTML5) gdk backend')
|
2018-02-14 14:04:04 +00:00
|
|
|
option('win32-backend', type: 'boolean', value: true,
|
|
|
|
description : 'Enable the Windows gdk backend (only when building on Windows)')
|
|
|
|
option('quartz-backend', type: 'boolean', value: true,
|
|
|
|
description : 'Enable the macOS gdk backend (only when building on macOS)')
|
2018-02-14 13:55:32 +00:00
|
|
|
|
|
|
|
# Optional dependencies
|
2018-02-14 14:07:22 +00:00
|
|
|
option('vulkan', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
|
2017-03-20 11:44:04 +00:00
|
|
|
description : 'Enable support for the Vulkan graphics API')
|
2018-02-14 14:07:22 +00:00
|
|
|
option('xinerama', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
|
2017-03-24 11:34:49 +00:00
|
|
|
description : 'Enable support for the Xinerama extension')
|
2018-02-14 14:07:22 +00:00
|
|
|
option('cloudproviders', type: 'boolean', value: false,
|
2018-02-14 13:55:32 +00:00
|
|
|
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
|
2018-02-14 13:35:38 +00:00
|
|
|
option('dynamic-modules', type: 'boolean', value : true,
|
|
|
|
description : 'Allow dynamic module loading')
|
2018-02-14 13:43:19 +00:00
|
|
|
option('included-immodules', type: 'string', value : 'none',
|
|
|
|
description : 'Build the specified input methods (comma-separated list, "all", or "none")')
|
2018-02-14 13:55:32 +00:00
|
|
|
|
|
|
|
# Documentation and introspection
|
2017-09-06 13:43:24 +00:00
|
|
|
option('documentation', type: 'boolean', value: 'false',
|
2017-04-19 10:35:45 +00:00
|
|
|
description : 'Build API reference and tools documentation')
|
2017-09-06 13:43:24 +00:00
|
|
|
option('man-pages', type: 'boolean', value: 'false',
|
2017-05-05 10:34:05 +00:00
|
|
|
description : 'Build man pages for installed tools')
|
2017-09-06 13:27:59 +00:00
|
|
|
option('introspection', type: 'boolean', value: 'true',
|
2017-09-02 11:00:05 +00:00
|
|
|
description : 'Build introspection data (requires gobject-introspection)')
|
2018-02-14 13:55:32 +00:00
|
|
|
|
|
|
|
# Demos and binaries
|
2017-09-06 12:33:18 +00:00
|
|
|
option('demos', type: 'boolean', value: 'true',
|
|
|
|
description : 'Build demos and example programs')
|
|
|
|
option('build-tests', type: 'boolean', value: 'true',
|
|
|
|
description : 'Build tests')
|
2017-10-10 04:14:48 +00:00
|
|
|
option('install-tests', type: 'boolean', value: 'false',
|
|
|
|
description : 'Install tests')
|