summaryrefslogtreecommitdiff
path: root/unoxml/meson.build
blob: 6aa178db9b498efcc07da9aa0356a244f8f0fbaa (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
55
56
57
58
59
60
61
62
63
64
65
unoxml_lib = shared_library('unoxmllo',
  'source/dom/node.cxx',
  'source/dom/document.cxx',
  'source/dom/element.cxx',
  'source/dom/attr.cxx',
  'source/dom/cdatasection.cxx',
  'source/dom/characterdata.cxx',
  'source/dom/comment.cxx',
  'source/dom/documentbuilder.cxx',
  'source/dom/documentfragment.cxx',
  'source/dom/documenttype.cxx',
  'source/dom/entity.cxx',
  'source/dom/entityreference.cxx',
  'source/dom/notation.cxx',
  'source/dom/processinginstruction.cxx',
  'source/dom/text.cxx',
  'source/dom/domimplementation.cxx',
  'source/dom/elementlist.cxx',
  'source/dom/childlist.cxx',
  'source/dom/notationsmap.cxx',
  'source/dom/entitiesmap.cxx',
  'source/dom/attributesmap.cxx',
  'source/dom/saxbuilder.cxx',
  'source/xpath/xpathobject.cxx',
  'source/xpath/nodelist.cxx',
  'source/xpath/xpathapi.cxx',
  'source/events/event.cxx',
  'source/events/eventdispatcher.cxx',
  'source/events/mutationevent.cxx',
  'source/events/uievent.cxx',
  'source/events/mouseevent.cxx',
  'source/service/services.cxx',


  udk_fake_h, off_fake_h,
  cpp_args: ['-DLIBO_INTERNAL_ONLY'],
  include_directories: [main_inc, udkh_inc, offapi_inc, 'inc'],
  link_with: [ucbhelper_lib,
    sax_lib,
    comphelper_lib,
    cppuhelper_lib,
    cppu_lib,
    sal_lib,
    tl_lib,
    xo_lib,
  ],
  dependencies: [libxml_dep],
  install: true,
)

unordf_lib = shared_library('unordflo',
  'source/rdf/CBlankNode.cxx',
  'source/rdf/CURI.cxx',
  'source/rdf/CLiteral.cxx',
  'source/rdf/librdf_repository.cxx',
  'source/rdf/librdf_services.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: [comphelper_lib, cppuhelper_lib, cppu_lib, sal_lib],
  dependencies: [libxml_dep, raptor2_dep, rasqal_dep, librdf_dep, libxslt_dep],
  install: true,
)