summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2022-10-23 15:37:33 +0200
committerNiels De Graef <nielsdegraef@gmail.com>2022-10-23 15:37:33 +0200
commit9a6fe8a72fc6e60da8ab96209cb9700b1fd2f8af (patch)
tree2cbb4bc8355d653eed9c43af4b5c8452761481fd /meson_options.txt
parentf971b3dd4d0f3fadafdcb707b3f5e9f6090a005a (diff)
downloadgnome-contacts-9a6fe8a72fc6e60da8ab96209cb9700b1fd2f8af.tar.gz
meson: Wrap options over several lines
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt25
1 files changed, 21 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 600f109..e090f9e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,21 @@
-option('profile', type: 'combo', choices: [ 'default', 'development' ], value: 'default', description: 'Indicate whether this is a nightly build (used for CI purposes)')
-option('camera', type: 'boolean', value: true, description: 'Support creaing an avatar with the webcam using the XDG camera portal')
-option('manpage', type: 'boolean', value: true, description: 'Enable building man pages.')
-option('docs', type: 'boolean', value: false, description: 'Whether to build the valadoc docs.')
+option('profile',
+ type: 'combo',
+ choices: [ 'default', 'development' ],
+ value: 'default',
+ description: 'Indicate whether this is a nightly build (used for CI purposes)',
+)
+option('camera',
+ type: 'boolean',
+ value: true,
+ description: 'Support creaing an avatar with the webcam using the XDG camera portal',
+)
+option('manpage',
+ type: 'boolean',
+ value: true,
+ description: 'Enable building man pages.',
+)
+option('docs',
+ type: 'boolean',
+ value: false,
+ description: 'Whether to build the valadoc docs.',
+)