소스 검색

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