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 (61 lines) | stat: -rw-r--r-- 1,067 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
61
arithmetic_sources = files(
    'find_trim.c',
    'sum.c',
    'hough.c',
    'hough_line.c',
    'hough_circle.c',
    'abs.c',
    'complex.c',
    'deviate.c',
    'divide.c',
    'measure.c',
    'getpoint.c',
    'multiply.c',
    'remainder.c',
    'sign.c',
    'statistic.c',
    'stats.c',
    'avg.c',
    'min.c',
    'max.c',
    'hist_find.c',
    'hist_find_ndim.c',
    'hist_find_indexed.c',
    'project.c',
    'profile.c',
    'subtract.c',
    'math.c',
    'arithmetic.c',
    'binary.c',
    'unary.c',
    'nary.c',
    'unaryconst.c',
    'relational.c',
    'boolean.c',
    'add.c',
    'linear.c',
    'invert.c',
    'math2.c',
    'round.c',
)

arithmetic_headers = files(
    'hough.h',
    'statistic.h',
    'parithmetic.h',
    'binary.h',
    'unary.h',
    'nary.h',
    'unaryconst.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