File: meson.build

package info (click to toggle)
libdng 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,476 kB
  • sloc: ansic: 3,130; sh: 157; makefile: 13; python: 8
file content (30 lines) | stat: -rw-r--r-- 832 bytes parent folder | download
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)