mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-04 19:08:23 +00:00
2434f099d9
These were forgotten in 5cf288a93e
.
74 lines
1.2 KiB
Meson
74 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',
|
|
)
|