summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-05-05 19:32:00 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-05-05 19:32:00 +0530
commitac90718ffc102f6411be271f0cdc222740ab28f6 (patch)
tree469665fee53fb9238613a1d2630929b4bcb67f06 /meson_options.txt
parentc789277ec065eb2ac2bcb77ab2f5329caf3fe9ab (diff)
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.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 7d8b60a4..65dde098 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,8 @@
option('x264_libraries', type : 'string', value : '',
description : 'Colon separated list of additional x264 library paths, e.g. for 10-bit version')
-option('with-package-name', type : 'string',
+
+# Common options
+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')