summaryrefslogtreecommitdiff
path: root/backend/tiff/meson.build
blob: 04f8f462178844390b92bfaeb18bd905c0369f5a (plain)
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
tiff_sources = [
    'tiff-document.c',
    'tiff-document.h',
    'tiff2ps.c',
    'tiff2ps.h',
]

tiff_deps = [
    cairo,
    glib,
    gtk,
    math,
    tiff,
]

shared_module(
    'tiffdocument',
    tiff_sources,
    link_with: [libdocument],
    link_args: ['-Wl,-Bsymbolic', '-Wl,-z,relro', '-Wl,-z,now'],
    include_directories: include_dirs,
    dependencies: tiff_deps,
    install: true,
    install_dir: backendsdir,
)

i18n.merge_file(
  input: 'tiffdocument.atril-backend.desktop.in',
  output: 'tiffdocument.atril-backend',
  type: 'desktop',
  po_dir: po_dir,
  install: true,
  install_dir: backendsdir,
)