summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJan Ekström <jeebjp@gmail.com>2023-08-06 20:36:12 +0300
committerJan Ekström <jeebjp@gmail.com>2023-08-06 20:36:12 +0300
commit10087b408604c62cf028772e423fdad8bc8f71c2 (patch)
treece59a1aea294993a72f7a05d7d33a95c6374f410 /test
parent38b59408c26eadeec67e6581fbf3d3d1b9e4d523 (diff)
downloadmpv-10087b408604c62cf028772e423fdad8bc8f71c2.tar.bz2
mpv-10087b408604c62cf028772e423fdad8bc8f71c2.tar.xz
test/meson: add missing avutil dependency to chmap test
Found out with a CI image where FFmpeg is not located in the default sysroot.
Diffstat (limited to 'test')
-rw-r--r--test/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index abd57d1243..7562af1cf7 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -77,7 +77,8 @@ if features['av-channel-layout']
endif
chmap_objects = libmpv.extract_objects(chmap_files)
chmap = executable('chmap', 'chmap.c', include_directories: incdir,
- objects: chmap_objects, link_with: test_utils)
+ dependencies: [libavutil], objects: chmap_objects,
+ link_with: test_utils)
test('chmap', chmap)
gl_video_objects = libmpv.extract_objects('video/out/gpu/ra.c',