diff options
Diffstat (limited to 'contrib/xml2')
-rw-r--r-- | contrib/xml2/meson.build | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/contrib/xml2/meson.build b/contrib/xml2/meson.build new file mode 100644 index 00000000000..9c0b56f01f6 --- /dev/null +++ b/contrib/xml2/meson.build @@ -0,0 +1,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', + ], + }, +} |