gstreamer/tests/static-plugins/meson.build
Stéphane Cerveau f0f0662d9d gst-full: add way to test features presence
This test allows to test a list of features to be
registered in the library (or not).

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199>
2020-12-11 12:50:16 +00:00

9 lines
421 B
Meson

dep = dependency('gstreamer-full-1.0', required: get_option('default_library') == 'static')
if dep.found()
test_gst_full_features = executable('test-gst-full-features', 'test-gst-full-features.c', dependencies : gst_full_dep)
test('test-gst-full-features', test_gst_full_features)
test_gst_full = executable('test-gst-full', 'test-gst-full.c', dependencies : gst_full_dep)
test('test-gst-full', test_gst_full)
endif