summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-05-05 19:30:42 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-05-05 20:06:39 +0530
commitfeac77ace33199c75b29c88db3c7d160fc2a0a1b (patch)
tree3f474ff78945fe58ed7e25379f7c20df553a709b /meson_options.txt
parent0b9517cc96b745709f30f99f22172553d9f5110f (diff)
downloadgstreamer-plugins-bad-feac77ace33199c75b29c88db3c7d160fc2a0a1b.tar.gz
meson: Update option names to omit disable_ and with- prefixes
Also yield common options to the outer project (gst-build in our case) so that they don't have to be set manually.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt17
1 files changed, 9 insertions, 8 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 67c6904a6..eb1cff59d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,10 +1,11 @@
-option('use_orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
-option('disable_introspection',
- type : 'boolean', value : false,
- description : 'Whether to disable the introspection generation')
-option('with-package-name', type : 'string',
+option('gst_player_tests', type: 'boolean', value: false,
+ description: 'Enable GstPlayer tests that need network access')
+
+# Common options
+option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', yield : true)
+option('introspection', type : 'boolean', value : true, yield : true,
+ description : 'Generate gobject-introspection bindings')
+option('package-name', type : 'string', yield : true,
description : 'package name to use in plugins')
-option('with-package-origin', type : 'string', value : 'Unknown package origin',
+option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
description : 'package origin URL to use in plugins')
-option('enable_gst_player_tests', type: 'boolean', value: false,
- description: 'Enable GstPlayer tests that need network access')