mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
ed6c79ecfa
This partially reverts commit 673e6b157a
.
It turns out that the cloudproviders dependency is not desired for RHEL.
80 lines
1.3 KiB
Meson
80 lines
1.3 KiB
Meson
##############
|
|
# 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(
|
|
'profiling',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable performance profiling',
|
|
)
|
|
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',
|
|
)
|