1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
check_mode = executable('check_mode', 'check_mode.c', 'greatest.h',
include_directories: inc,
link_with: libdng,
install: false,
)
check_dng = executable('check_dng', 'check_dng.c', 'greatest.h',
include_directories: inc,
link_with: libdng,
dependencies: libtiff,
install: false,
)
check_dcp = executable('check_dcp', 'check_dcp.c', 'greatest.h',
include_directories: inc,
link_with: libdng,
dependencies: libtiff,
install: false,
)
check_repack = executable('check_repack', 'check_repack.c', 'greatest.h',
include_directories: inc,
link_with: libdng,
dependencies: libtiff,
install: false,
)
subdir('fixture')
test('check_mode', check_mode)
test('check_dng', check_dng)
test('check_dcp', check_dcp, workdir: meson.current_build_dir())
test('check_repack', check_repack)
|