gnome-shell/meson.options
Florian Müllner bf848a629a build: Rename meson_options.txt to meson.options
The name is a bit cleaner, and has been the preferred option(!)
since meson 1.1.

Mutter recently updated the name, so follow suite.

The meson version bump shouldn't be an issue, given that several
hard dependencies like mutter and glib already require higher
versions.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3515>
2024-10-18 17:22:04 +02:00

54 lines
920 B
Plaintext

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'
)