summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2025-07-03 13:58:27 +0100
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2025-07-30 11:48:53 +0000
commitca2604e88f3b43ed74e60314f7d5158f20724018 (patch)
tree25d86b823310edff28c4083f826123058e4dd25e
parent10ffa2884ba4587921ec872142619fdd6abbd15f (diff)
meson: Enable tools by default
orcc is not just a user tool, it is a necessary component of a gstreamer build that uses orc, and we shouldn't require users to explicitly enable it with -Dorc:tools=enabled. Part-of: <https://gitlab.freedesktop.org/gstreamer/orc/-/merge_requests/241>
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 26d3b8b..479dbdd 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -9,4 +9,4 @@ option('benchmarks', type : 'feature', value : 'auto', yield : true)
option('examples', type : 'feature', value : 'auto', yield : true)
option('gtk_doc', type : 'feature', value : 'auto', yield : true, description : 'Generate API documentation with gtk-doc')
option('tests', type : 'feature', value : 'auto', yield : true)
-option('tools', type : 'feature', value : 'auto', yield : true)
+option('tools', type : 'feature', value : 'enabled', yield : true)