summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-09-16 07:42:16 +0200
committerDudemanguy <random342@airmail.cc>2023-09-29 20:48:58 +0000
commitd0e4eabb4ea27fdaa469df8af17c8ed1cda50501 (patch)
treece1c86f0d0b831e3c9480d2f6025ff51a96cda83
parent9606c3fca9d568dc43711017dcb35a408c0d2883 (diff)
downloadmpv-d0e4eabb4ea27fdaa469df8af17c8ed1cda50501.tar.bz2
mpv-d0e4eabb4ea27fdaa469df8af17c8ed1cda50501.tar.xz
meson: add missing gl-video test dependency
-rw-r--r--test/meson.build3
1 files changed, 2 insertions, 1 deletions
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)