summaryrefslogtreecommitdiff
path: root/contrib/xml2/meson.build
blob: 9c0b56f01f61f292545aa6659b822f95c609e914 (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
if not libxml.found()
  subdir_done()
endif

xml2 = shared_module('pgxml',
  files(
    'xpath.c',
    'xslt_proc.c',
  ),
  kwargs: contrib_mod_args + {
    'dependencies': [libxml, libxslt, contrib_mod_args['dependencies']],
  },
)
contrib_targets += xml2

install_data(
  'xml2--1.0--1.1.sql',
  'xml2--1.1.sql',
  'xml2.control',
  kwargs: contrib_data_args,
)

tests += {
  'name': 'xml2',
  'sd': meson.current_source_dir(),
  'bd': meson.current_build_dir(),
  'regress': {
    'sql': [
      'xml2',
    ],
  },
}