summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2020-02-23 20:50:33 +0800
committerZenWalker <[email protected]>2020-03-05 11:06:00 +0100
commit2c7ed90ded4c9b01e7d6487c67700b65161c5c62 (patch)
treec767427dd66f1ea02268d7e5345c673c8f0ff366
parent0847a884464146b961b4f1efa52e934c2cebbc90 (diff)
downloadmate-desktop-2c7ed90ded4c9b01e7d6487c67700b65161c5c62.tar.bz2
mate-desktop-2c7ed90ded4c9b01e7d6487c67700b65161c5c62.tar.xz
meson: add configuration item description
-rw-r--r--meson_options.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 7eea7cd..90f6fed 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,20 +1,29 @@
option('gtk-doc',
type: 'boolean',
value: 'false',
+ description: 'use gtk-doc to build documentation'
)
+
option('introspection',
type: 'boolean',
value: 'false',
+ description: 'Enable introspection for this build'
)
+
option('mate-about',
type: 'boolean',
value: 'true',
+ description: 'build mate-about'
)
+
option('startup-notification',
type: 'boolean',
value: 'false',
+ description: 'startup notification support'
)
+
option('pnp-ids-path',
type: 'string',
value: 'internal',
+ description: 'Specify the path to pnp.ids, default is "internal"'
)