File: meson.build

package info (click to toggle)
vips 8.16.1-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 51,940 kB
  • sloc: ansic: 169,179; cpp: 11,890; python: 4,620; xml: 4,353; sh: 732; perl: 40; makefile: 19
file content (64 lines) | stat: -rw-r--r-- 1,117 bytes parent folder | download | duplicates (2)
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
61
62
63
64
arithmetic_sources = files(
    'abs.c',
    'add.c',
    'arithmetic.c',
    'avg.c',
    'binary.c',
    'boolean.c',
    'clamp.c',
    'complex.c',
    'deviate.c',
    'divide.c',
    'find_trim.c',
    'getpoint.c',
    'hist_find.c',
    'hist_find_indexed.c',
    'hist_find_ndim.c',
    'hough.c',
    'hough_circle.c',
    'hough_line.c',
    'invert.c',
    'linear.c',
    'math2.c',
    'math.c',
    'max.c',
    'maxpair.c',
    'measure.c',
    'min.c',
    'minpair.c',
    'multiply.c',
    'nary.c',
    'profile.c',
    'project.c',
    'relational.c',
    'remainder.c',
    'round.c',
    'sign.c',
    'statistic.c',
    'stats.c',
    'subtract.c',
    'sum.c',
    'unary.c',
    'unaryconst.c',
)

arithmetic_headers = files(
    'binary.h',
    'hough.h',
    'nary.h',
    'parithmetic.h',
    'statistic.h',
    'unaryconst.h',
    'unary.h',
)

libvips_sources += arithmetic_sources

arithmetic_lib = static_library('arithmetic',
    arithmetic_sources,
    arithmetic_headers,
    dependencies: libvips_deps,
    gnu_symbol_visibility: 'hidden',
)

libvips_components += arithmetic_lib