Files
gnome-shell-extensions/meson.options
Florian Müllner 0bc77ef7c9 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-extensions/-/merge_requests/349>
(cherry picked from commit 1088435120)
2024-10-18 19:15:44 +02:00

23 lines
546 B
Plaintext

# SPDX-FileCopyrightText: 2017 Florian Müllner <fmuellner@gnome.org>
#
# SPDX-License-Identifier: GPL-2.0-or-later
option('extension_set',
type: 'combo',
choices: ['classic', 'default', 'all'],
value: 'default',
description: 'Predefined sets of extensions'
)
option('enable_extensions',
type: 'array',
value: [],
description: 'Comma separated list of extensions to enable instead of a predefined set.'
)
option('classic_mode',
type: 'boolean',
value: false,
description: 'Enable installing data files for classic mode.'
)