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,
|
2018-04-22 12:47:32 +00:00
|
|
|
description : 'Enable the X11 gdk backend (only when building on Unix)')
|
2018-02-14 14:04:04 +00:00
|
|
|
option('wayland-backend', type: 'boolean', value: true,
|
2018-04-22 12:47:32 +00:00
|
|
|
description : 'Enable the wayland gdk backend (only when building on Unix except for macOS)')
|
2018-02-14 14:04:04 +00:00
|
|
|
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
|
|
|
|
2018-03-01 20:46:16 +00:00
|
|
|
# Media backends
|
2018-03-04 14:03:26 +00:00
|
|
|
option('media', type: 'string', value: 'gstreamer',
|
2018-03-01 20:46:16 +00:00
|
|
|
description : 'Build the specified media engines (comma-separated list, "all", or "none")')
|
|
|
|
|
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')
|
2019-05-30 02:02:30 +00:00
|
|
|
option('profiler', type: 'boolean', value: false,
|
|
|
|
description : 'Enable profiler support')
|
2018-02-14 13:55:32 +00:00
|
|
|
|
|
|
|
# Print backends
|
2018-02-24 06:02:17 +00:00
|
|
|
option('print-backends', type : 'string', value : 'cups,file',
|
2018-02-14 13:55:32 +00:00
|
|
|
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')
|
|
|
|
|
|
|
|
# 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',
|
2018-03-27 12:15:21 +00:00
|
|
|
description : 'Build demo programs')
|
|
|
|
option('build-examples', type: 'boolean', value: 'true',
|
|
|
|
description : 'Build examples')
|
2017-09-06 12:33:18 +00:00
|
|
|
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')
|