mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
31a57fe389
It depends on libcontent-hub-glib which was dropped from Ubuntu in mid 2017: https://bugs.launchpad.net/ubuntu/+source/content-hub/+bug/1712874 It was patched downstream to still build until it was disabled at the beginning of 2018: https://launchpad.net/ubuntu/+source/gtk+3.0/3.22.28-1ubuntu3 This likely means no one has built gtk with mir in 2 years, and there is no plan to change that, so just remove it.
48 lines
2.3 KiB
Meson
48 lines
2.3 KiB
Meson
# GDK backends
|
|
option('x11_backend', type: 'boolean', value: true,
|
|
description : 'Enable the X11 gdk backend (only when building on Unix)')
|
|
option('wayland_backend', type: 'boolean', value: true,
|
|
description : 'Enable the wayland gdk backend (only when building on Unix except for macOS)')
|
|
option('broadway_backend', type: 'boolean', value: false,
|
|
description : 'Enable the broadway (HTML5) gdk backend')
|
|
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)')
|
|
|
|
# Optional dependencies
|
|
option('xinerama', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
|
|
description : 'Enable support for the Xinerama extension')
|
|
option('cloudproviders', type: 'boolean', value: false,
|
|
description : 'Enable the cloudproviders support')
|
|
option('profiler', type: 'boolean', value: false,
|
|
description : 'Enable profiler support')
|
|
|
|
# Print backends
|
|
option('print_backends', type : 'string', value : 'auto',
|
|
description : 'Build the specified print backends (comma-separated list, any of "cloudprint,cups,file,lpr,papi,test" or "auto")')
|
|
option('colord', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto',
|
|
description : 'Build colord support for the CUPS printing backend')
|
|
|
|
# Documentation and introspection
|
|
option('gtk_doc', type: 'boolean', value: 'false',
|
|
description : 'Build API reference with gtk-doc')
|
|
option('man', 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 demo programs')
|
|
option('examples', type: 'boolean', value: 'true',
|
|
description : 'Build examples')
|
|
option('tests', type: 'boolean', value: 'true',
|
|
description : 'Build tests')
|
|
option('installed_tests', type: 'boolean', value: 'false',
|
|
description : 'enable installed tests')
|
|
|
|
# input modules
|
|
option('builtin_immodules', type: 'combo', choices : ['yes', 'no', 'auto'],
|
|
value: 'auto', description: 'Build immodules into GTK so/DLL')
|