meson.build 370 B

1234567891011121314
  1. check_mode = executable('check_mode', 'check_mode.c', 'greatest.h',
  2. include_directories: inc,
  3. link_with: libdng,
  4. install: false,
  5. )
  6. check_dng = executable('check_dng', 'check_dng.c', 'greatest.h',
  7. include_directories: inc,
  8. link_with: libdng,
  9. dependencies: libtiff,
  10. install: false,
  11. )
  12. test('check_mode', check_mode)
  13. test('check_dng', check_dng)