gstreamer/subprojects/gst-editing-services/tests/meson.build
Thibault Saunier daa1519e3d nle: Add validate tests support
This allows us to start testing internal of the elements by linking
the nle pluging directly with validate and implement validate
tests with specific action types.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5035>
2024-10-19 10:30:05 +00:00

11 lines
229 B
Meson

if get_option('tests').disabled() or static_build
subdir_done()
endif
# FIXME: make check work on windows
if host_system != 'windows' and gstcheck_dep.found()
subdir('check')
subdir('validate')
endif
subdir('benchmarks')