浏览代码

Fix running dng writing testsuite in meson

Martijn Braam 1 年之前
父节点
当前提交
e4c764a1b6
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      tests/meson.build

+ 2 - 1
tests/meson.build

@@ -3,9 +3,10 @@ check_mode = executable('check_mode', 'check_mode.c', 'greatest.h',
     link_with: libdng,
     install: false,
 )
-check_mode = executable('check_dng', 'check_dng.c', 'greatest.h',
+check_dng = executable('check_dng', 'check_dng.c', 'greatest.h',
     include_directories: inc,
     link_with: libdng,
+    dependencies: libtiff,
     install: false,
 )