mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
f0f0662d9d
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>
8 lines
421 B
Meson
8 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
|