1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# 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.'
)
option('x11',
type: 'boolean',
value: false,
description: 'Enable X11 session support.'
)
|