From ec52555862913a23417735f9f7f5402f5230da13 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 17:59:36 +0200 Subject: Adding upstream version 3.38.2. Signed-off-by: Daniel Baumann --- meson_options.txt | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 meson_options.txt (limited to 'meson_options.txt') 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', +) -- cgit v1.2.3