summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-02-14 23:57:09 +0000
committerTim-Philipp Müller <tim@centricular.com>2019-02-14 23:57:09 +0000
commitb4b00545c7f3c149758539eedc8c5efabfcbc759 (patch)
tree023765d240fc76b3eb1bda15a1f2e90bd04d2399 /meson_options.txt
parent9ff4dc533fb9c4023f35cf7baa2d26446b747391 (diff)
downloadgst-omx-b4b00545c7f3c149758539eedc8c5efabfcbc759.tar.gz
meson: add options to disable examples, tests and tools and bump meson requirement
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 609e71b..75985ce 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -6,3 +6,8 @@ option('target', type : 'combo',
option('struct_packing', type : 'combo',
choices : ['0', '1', '2', '4', '8'], value : '0',
description : 'Force OpenMAX struct packing')
+
+# Common feature options
+option('examples', type : 'feature', value : 'auto', yield : true)
+option('tests', type : 'feature', value : 'auto', yield : true)
+option('tools', type : 'feature', value : 'auto', yield : true)