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 (63 lines) | stat: -rw-r--r-- 1,075 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
iofuncs_sources = files(
    'thread.c',
    'threadset.c',
    'threadpool.c',
    'ginputsource.c',
    'sourceginput.c',
    'connection.c',
    'source.c',
    'sourcecustom.c',
    'target.c',
    'targetcustom.c',
    'sbuf.c',
    'dbuf.c',
    'reorder.c',
    'type.c',
    'gate.c',
    'object.c',
    'error.c',
    'image.c',
    'vips.c',
    'generate.c',
    'mapfile.c',
    'cache.c',
    'sink.c',
    'sinkmemory.c',
    'sinkdisc.c',
    'sinkscreen.c',
    'memory.c',
    'header.c',
    'operation.c',
    'region.c',
    'rect.c',
    'semaphore.c',
    'util.c',
    'init.c',
    'buf.c',
    'window.c',
    'vector.cpp',
    'system.c',
    'buffer.c',
)

iofuncs_headers = files(
    'sink.h',
)

vipsmarshal = gnome.genmarshal(
    'vipsmarshal',
    prefix: 'vips',
    sources: 'vipsmarshal.list',
)

libvips_sources += iofuncs_sources

iofuncs_lib = static_library('iofuncs',
    iofuncs_sources,
    iofuncs_headers,
    vipsmarshal,
    dependencies: libvips_deps,
    gnu_symbol_visibility: 'hidden',
)

libvips_components += iofuncs_lib