nautilus/meson_options.txt
Ondrej Holy ed6c79ecfa sidebar: Make cloudproviders dependency optional again
This partially reverts commit 673e6b157a.
It turns out that the cloudproviders dependency is not desired for RHEL.
2023-06-22 16:04:20 +00:00

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