diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /meson_options.txt | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | meson_options.txt | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..fce5f16 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,74 @@ +############## +# 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', +) |