From d0e4eabb4ea27fdaa469df8af17c8ed1cda50501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sat, 16 Sep 2023 07:42:16 +0200 Subject: [PATCH] meson: add missing gl-video test dependency --- test/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 7562af1cf7..82e89aec52 100644 --- a/test/meson.build +++ b/test/meson.build @@ -84,7 +84,8 @@ test('chmap', chmap) gl_video_objects = libmpv.extract_objects('video/out/gpu/ra.c', 'video/out/gpu/utils.c') gl_video = executable('gl-video', 'gl_video.c', objects: gl_video_objects, - include_directories: incdir, link_with: [img_utils, test_utils]) + dependencies: [libavutil], include_directories: incdir, + link_with: [img_utils, test_utils]) test('gl-video', gl_video) json = executable('json', 'json.c', include_directories: incdir, link_with: test_utils)