1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-07-02 16:31:15 +00:00
nautilus/meson_options.txt
Khalid Abu Shawarib 2434f099d9 build: remove leftover profiling options
These were forgotten in 5cf288a93e.
2023-10-29 23:43:16 +01: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',
)
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',
)