gnome-shell/meson_options.txt
Florian Müllner 1403747863 build: Add option to disable portal-helper
The portal login window uses WebKit, which is a security-sensitive
component that not all vendors want to support.

Support that case with a build option, and update the captive
portal handler to use the user's default browser if the portal-helper
is disabled.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3408>
2024-07-25 01:51:17 +00:00

54 lines
920 B
Meson

option('camera_monitor',
type: 'boolean',
value: true,
description: 'Enable the camera monitor'
)
option('extensions_tool',
type: 'boolean',
value: true,
description: 'Build gnome-extensions CLI tool'
)
option('extensions_app',
type: 'boolean',
value: true,
description: 'Build gnome-extensions GUI application'
)
option('gtk_doc',
type: 'boolean',
value: false,
description: 'Build API reference'
)
option('man',
type: 'boolean',
value: true,
description: 'Generate man pages'
)
option('tests',
type: 'boolean',
value: true,
description: 'Enable tests'
)
option('networkmanager',
type: 'boolean',
value: true,
description: 'Enable NetworkManager support'
)
option('portal_helper',
type: 'boolean',
value: true,
description: 'Enable build-in network portal login'
)
option('systemd',
type: 'boolean',
value: true,
description: 'Enable systemd integration'
)