summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@gnome.org>2018-07-23 19:16:43 +0300
committerErnestas Kulik <ernestask@gnome.org>2018-07-25 19:06:37 +0300
commit200a5869b5c1dc8c8f04247e5be3689d9275fd72 (patch)
tree12d67d0bdb7d0963c791f9a70f485bb99f9a8c88 /meson_options.txt
parent74d3b20089db6b1720327c08e82678c0a0f7bbc8 (diff)
downloadnautilus-200a5869b5c1dc8c8f04247e5be3689d9275fd72.tar.gz
build: Allow disabling GIR data generation
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt81
1 files changed, 74 insertions, 7 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 072b4549c..fce5f16f9 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,7 +1,74 @@
-option('docs', type: 'boolean', value: false)
-option('profiling', type: 'boolean', value: false)
-option('extensions', type: 'boolean', value: true)
-option('packagekit', type: 'boolean', value: true)
-option('selinux', type: 'boolean', value: false)
-option('tests', type: 'combo', choices: ['none', 'headless', 'all'], value: 'headless')
-option('profile', type : 'string', value : '', description : 'Profile to be used as app id') \ No newline at end of file
+##############
+# 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',
+)