nautilus/meson_options.txt
Jeremy Bicha 794931998c Drop libportal option
This is a follow up from https://gitlab.gnome.org/GNOME/nautilus/-/commit/6af38c29d

As a result of that commit, it's not possible to set a picture as desktop wallpaper
from Nautilus unless libportal is used. Since libportal is generally available,
it's no longer a useful option to not use libportal.
2022-05-26 15:19:04 -04:00

75 lines
1.2 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',
)
################
# 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',
)