mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +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/3259>
This commit is contained in:
parent
366893e9ac
commit
2265709574
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