mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
meson: Add some missing test dependencies
Without these dependencies, the enumtype may not be generated when the test is built, which will cause a compile failure.
This commit is contained in:
parent
21d5005688
commit
8fd3a98256
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
tests = [
|
||||
['equalizer-test'],
|
||||
['test-accurate-seek', gstapp_dep],
|
||||
['test-accurate-seek', [gstaudio_dep, gstapp_dep]],
|
||||
['test-segment-seeks'],
|
||||
['videocrop-test'],
|
||||
['videobox-test'],
|
||||
|
@ -26,7 +26,7 @@ foreach t : tests
|
|||
test_name = t.get(0)
|
||||
extra_deps = t.get(1, [])
|
||||
executable(test_name, test_name + '.c',
|
||||
dependencies: [gst_dep, libm, extra_deps],
|
||||
dependencies: [gst_dep, gstbase_dep, libm, extra_deps],
|
||||
c_args : gst_plugins_good_args,
|
||||
include_directories : [configinc],
|
||||
install: false)
|
||||
|
|
Loading…
Reference in a new issue