summaryrefslogtreecommitdiff
path: root/svgio/meson.build
blob: a0c43d533040ef76b0a7731e706e6be5b02609f3 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
svgio_lib = shared_library('svgio',
  'source/svgreader/svgcharacternode.cxx',
  'source/svgreader/svgcirclenode.cxx',
  'source/svgreader/svgclippathnode.cxx',
  'source/svgreader/svgdocument.cxx',
  'source/svgreader/svgdocumenthandler.cxx',
  'source/svgreader/svgellipsenode.cxx',
  'source/svgreader/svggnode.cxx',
  'source/svgreader/svganode.cxx',
  'source/svgreader/svggradientnode.cxx',
  'source/svgreader/svggradientstopnode.cxx',
  'source/svgreader/svgimagenode.cxx',
  'source/svgreader/svglinenode.cxx',
  'source/svgreader/svgmarkernode.cxx',
  'source/svgreader/svgmasknode.cxx',
  'source/svgreader/svgnode.cxx',
  'source/svgreader/svgpaint.cxx',
  'source/svgreader/svgpathnode.cxx',
  'source/svgreader/svgpatternnode.cxx',
  'source/svgreader/svgpolynode.cxx',
  'source/svgreader/svgrectnode.cxx',
  'source/svgreader/svgstyleattributes.cxx',
  'source/svgreader/svgstylenode.cxx',
  'source/svgreader/svgsvgnode.cxx',
  'source/svgreader/svgsymbolnode.cxx',
  'source/svgreader/svgtextnode.cxx',
  'source/svgreader/svgtitledescnode.cxx',
  'source/svgreader/svgtoken.cxx',
  'source/svgreader/svgtrefnode.cxx',
  'source/svgreader/svgtools.cxx',
  'source/svgreader/svgtextpathnode.cxx',
  'source/svgreader/svgtspannode.cxx',
  'source/svgreader/svgusenode.cxx',
  'source/svgreader/svgvisitor.cxx',
  'source/svguno/svguno.cxx',
  'source/svguno/xsvgparser.cxx',
  udk_fake_h, off_fake_h,
  cpp_args: ['-DTOOLS_DLLIMPLEMENTATION',
             '-DLIBO_INTERNAL_ONLY'],
  include_directories: [main_inc, udkh_inc, offapi_inc, 'inc'],
  link_with: [basegfx_lib,
    drawinglayer_lib,
    comphelper_lib,
    cppu_lib,
    cppuhelper_lib,
    sal_lib,
    tl_lib,
    sax_lib,
    vcl_lib,
    svt_lib,
  ],
  dependencies: [],
  install: true,
)