mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
9cc363311d
Not all static-library build configurations need to use this, and the CPU time and RAM needed by gst-full targets is quite significant. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7315>
7 lines
459 B
Meson
7 lines
459 B
Meson
dep = dependency('gstreamer-full-1.0', required: get_option('gst-full'))
|
|
if dep.found()
|
|
test_gst_full_features = executable('test-gst-full-features', 'test-gst-full-features.c', dependencies : gst_full_dep, c_args: ['-DHAVE_CONFIG_H'])
|
|
test('test-gst-full-features', test_gst_full_features)
|
|
test_gst_full = executable('test-gst-full', 'test-gst-full.c', dependencies : gst_full_dep, c_args: ['-DHAVE_CONFIG_H'])
|
|
test('test-gst-full', test_gst_full)
|
|
endif
|