File: meson.build

package info (click to toggle)
vips 8.14.1-3%2Bdeb12u2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 35,912 kB
  • sloc: ansic: 165,449; cpp: 10,987; python: 4,462; xml: 4,212; sh: 471; perl: 40; makefile: 23
file content (60 lines) | stat: -rw-r--r-- 1,087 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
conversion_sources = files(
    'switch.c',
    'transpose3d.c',
    'composite.cpp',
    'smartcrop.c',
    'conversion.c',
    'tilecache.c',
    'gamma.c',
    'sequential.c',
    'flatten.c',
    'premultiply.c',
    'unpremultiply.c',
    'byteswap.c',
    'cache.c',
    'copy.c',
    'embed.c',
    'flip.c',
    'insert.c',
    'join.c',
    'arrayjoin.c',
    'extract.c',
    'replicate.c',
    'cast.c',
    'bandjoin.c',
    'bandrank.c',
    'recomb.c',
    'bandmean.c',
    'bandfold.c',
    'bandunfold.c',
    'bandbool.c',
    'bandary.c',
    'rot.c',
    'rot45.c',
    'autorot.c',
    'ifthenelse.c',
    'falsecolour.c',
    'msb.c',
    'grid.c',
    'scale.c',
    'wrap.c',
    'subsample.c',
    'zoom.c',
)

conversion_headers = files(
    'pconversion.h',
    'bandary.h',
)

libvips_sources += conversion_sources

conversion_lib = static_library('conversion',
    conversion_sources,
    conversion_headers,
    dependencies: libvips_deps,
    c_args: [ '-Wno-unknown-pragmas' ],
    gnu_symbol_visibility: 'hidden',
)

libvips_components += conversion_lib