meson.build 621 B

1234567891011121314151617181920212223
  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. check_dcp = executable('check_dcp', 'check_dcp.c', 'greatest.h',
  13. include_directories: inc,
  14. link_with: libdng,
  15. dependencies: libtiff,
  16. install: false,
  17. )
  18. subdir('fixture')
  19. test('check_mode', check_mode)
  20. test('check_dng', check_dng)
  21. test('check_dcp', check_dcp, workdir: meson.current_build_dir())