Browse Source

Fix running dng writing testsuite in meson

Martijn Braam 1 year ago
parent
commit
e4c764a1b6
1 changed files with 2 additions and 1 deletions
  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,
 )