mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
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>
This commit is contained in:
parent
c560ec47fb
commit
fef136b3d0
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue