summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-07-25 19:09:30 +0100
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-07-26 09:42:49 +0000
commit2cd8e6d0dbc5b0d37b076b642389bc8283caff58 (patch)
tree26a7b571d805af24850af30251bb6e46ad54d801 /meson_options.txt
parent9f202a0a72f4747b7b37c340a27bac0b5b1d313a (diff)
meson: add 'tools' and 'examples' options
To optionally disable build of those. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/203>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 99d3577d..730682e5 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,13 +1,20 @@
+# Common feature options
+option('doc', type : 'feature', value : 'auto', yield: true,
+ description: 'Enable documentation.')
+option('examples', type : 'feature', value : 'auto', yield : true,
+ description : 'Build examples')
option('introspection', type : 'feature', value : 'auto', yield : true,
description : 'Generate gobject-introspection bindings')
option('tests', type : 'feature', value : 'auto', yield : true,
description : 'Build and enable unit tests')
+option('tools', type : 'feature', value : 'auto', yield : true,
+ description : 'Build ges-launch command line tool')
+
+# GES options
option('pygi-overrides-dir', type : 'string', value : '',
description: 'Path to pygobject overrides directory')
option('xptv', type : 'feature', value : 'auto',
description : 'Build the deprecated xptv formater')
-option('doc', type : 'feature', value : 'auto', yield: true,
- description: 'Enable documentation.')
option('python', type : 'feature', value : 'auto', yield: true,
description: 'Enable python formatters.')
option('libpython-dir', type : 'string', value : '',