diff options
Diffstat (limited to 'contrib/xml2/meson.build')
-rw-r--r-- | contrib/xml2/meson.build | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/contrib/xml2/meson.build b/contrib/xml2/meson.build new file mode 100644 index 0000000..4989567 --- /dev/null +++ b/contrib/xml2/meson.build @@ -0,0 +1,43 @@ +# Copyright (c) 2022-2023, PostgreSQL Global Development Group + +if not libxml.found() + subdir_done() +endif + +xml2_sources = files( + 'xpath.c', + 'xslt_proc.c', +) + +if host_system == 'windows' + xml2_sources += rc_lib_gen.process(win32ver_rc, extra_args: [ + '--NAME', 'pgxml', + '--FILEDESC', 'xml2 - XPath querying and XSLT',]) +endif + +xml2 = shared_module('pgxml', + xml2_sources, + c_pch: pch_postgres_h, + 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', + ], + }, +} |