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 (49 lines) | stat: -rw-r--r-- 898 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
create_sources = files(
    'perlin.c',
    'worley.c',
    'create.c',
    'gaussmat.c',
    'logmat.c',
    'buildlut.c',
    'invertlut.c',
    'tonelut.c',
    'identity.c',
    'point.c',
    'mask.c',
    'mask_ideal.c',
    'mask_ideal_ring.c',
    'mask_ideal_band.c',
    'mask_butterworth.c',
    'mask_butterworth_ring.c',
    'mask_butterworth_band.c',
    'mask_gaussian.c',
    'mask_gaussian_ring.c',
    'mask_gaussian_band.c',
    'mask_fractal.c',
    'fractsurf.c',
    'eye.c',
    'grey.c',
    'xyz.c',
    'black.c',
    'text.c',
    'gaussnoise.c',
    'sines.c',
    'zone.c',
)

create_headers = files(
    'pcreate.h',
    'point.h',
    'pmask.h',
)

libvips_sources += create_sources

create_lib = static_library('create',
    create_sources,
    create_headers,
    dependencies: libvips_deps,
    gnu_symbol_visibility: 'hidden',
)

libvips_components += create_lib