summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@gnome.org>2017-12-13 20:13:54 +0200
committerErnestas Kulik <ernestask@gnome.org>2018-01-02 12:51:32 +0200
commit983892a656743cf2db89e6f824a9afb25c71b075 (patch)
tree80e657d23d6ce20fdbe62269149672eb5114fa59 /meson_options.txt
parent2ad72d3997a6f433716cb027be963c0748379095 (diff)
downloadnautilus-983892a656743cf2db89e6f824a9afb25c71b075.tar.gz
build: general cleanups
This commit does the following: * Canonicalize the style: * Use two-space indentations. * Un-Autotools-ify option names. * Don’t align arguments, simply increase indentation. * Don’t add a space before opening parenthesis in calls. * Remove unused variables. * Remove unused dependencies. * Remove config.h.meson. * Optimize dependencies. * Use disabler functionality for libselinux dependency, to save lines.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt20
1 files changed, 5 insertions, 15 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 21bc5db45..7fb56036c 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,15 +1,5 @@
-option ('enable-profiling',
- type: 'boolean',
- value: false)
-option ('enable-nst-extension',
- type: 'boolean',
- value: true)
-option ('enable-selinux',
- type: 'boolean',
- value: true)
-option ('enable-packagekit',
- type: 'boolean',
- value: true)
-option ('enable-gtk-doc',
- type: 'boolean',
- value: false)
+option('docs', type: 'boolean', value: false)
+option('profiling', type: 'boolean', value: false)
+option('nst_extension', type: 'boolean', value: true)
+option('packagekit', type: 'boolean', value: true)
+option('selinux', type: 'boolean', value: true)