1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-07-04 17:30:47 +00:00
nautilus/meson_options.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
1.2 KiB
Meson
Raw Normal View History

##############
# Extensions #
##############
option(
'docs',
type: 'boolean',
value: false,
description: 'Build documentation for extension library',
)
option(
'extensions',
type: 'boolean',
value: true,
description: 'Build stock extensions',
)
option(
'introspection',
type: 'boolean',
value: true,
description: 'Build GObject introspection data for extension library',
)
##################
# End extensions #
##################
############
# Features #
############
option(
'packagekit',
type: 'boolean',
value: true,
description: 'Enable finding file type handlers using PackageKit',
)
option(
'selinux',
type: 'boolean',
value: false,
description: 'Enable SELinux context support in file properties dialog',
)
option(
'cloudproviders',
type: 'boolean',
value: true,
description: 'Enable the cloudproviders support',
)
################
# End features #
################
###########
# Testing #
###########
option(
'tests',
type: 'combo',
choices: [
'none',
'headless',
'all'
],
value: 'headless',
description: 'Build selected tests',
)
###############
# End testing #
###############
option(
'profile',
type: 'string',
value: '',
description: 'Build with specified application ID',
)