meson: add missing gl-video test dependency

This commit is contained in:
Kacper Michajłow 2023-09-16 07:42:16 +02:00 committed by Dudemanguy
parent 9606c3fca9
commit d0e4eabb4e
1 changed files with 2 additions and 1 deletions

View File

@ -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)