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 (32 lines) | stat: -rw-r--r-- 601 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
histogram_sources = files(
    'histogram.c',
    'maplut.c',
    'case.c',
    'hist_unary.c',
    'hist_cum.c',
    'hist_norm.c',
    'hist_equal.c',
    'hist_plot.c',
    'hist_match.c',
    'hist_local.c',
    'percent.c',
    'hist_ismonotonic.c',
    'hist_entropy.c',
    'stdif.c',
)

histogram_headers = files(
    'phistogram.h',
    'hist_unary.h',
)

libvips_sources += histogram_sources

histogram_lib = static_library('histogram',
    histogram_sources,
    histogram_headers,
    dependencies: libvips_deps,
    gnu_symbol_visibility: 'hidden',
)

libvips_components += histogram_lib