Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2022-10-24 22:40:55 +0300
committerTim-Philipp Müller <tim@centricular.com>2022-10-26 21:55:27 +0300
commitfef136b3d07eebfd87fce29e8c2726c97daf7b26 (patch)
treef93b82ce113a8ddbf85a04723ebff015dd390a10
parentc560ec47fbedd7ca38bbcbe512804a307009af9e (diff)
build: Fix building ges with tools disabled
If you configure with `tools=disabled` then ges_launch is undefined. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3274>
-rw-r--r--subprojects/gst-editing-services/tests/check/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/gst-editing-services/tests/check/meson.build b/subprojects/gst-editing-services/tests/check/meson.build
index 34c1344785..267a84b9f2 100644
--- a/subprojects/gst-editing-services/tests/check/meson.build
+++ b/subprojects/gst-editing-services/tests/check/meson.build
@@ -75,7 +75,7 @@ foreach t : ges_tests
endif
endforeach
-if gstvalidate_dep.found()
+if gstvalidate_dep.found() and not get_option('tools').disabled()
# filename: is .validatetest
scenarios = {
'check_video_track_restriction_scale': false,