diff options
Diffstat (limited to 'contrib/tablefunc')
-rw-r--r-- | contrib/tablefunc/meson.build | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/tablefunc/meson.build b/contrib/tablefunc/meson.build new file mode 100644 index 00000000000..f4230096c0c --- /dev/null +++ b/contrib/tablefunc/meson.build @@ -0,0 +1,24 @@ +tablefunc = shared_module('tablefunc', + files( + 'tablefunc.c', + ), + kwargs: contrib_mod_args, +) +contrib_targets += tablefunc + +install_data( + 'tablefunc--1.0.sql', + 'tablefunc.control', + kwargs: contrib_data_args, +) + +tests += { + 'name': 'tablefunc', + 'sd': meson.current_source_dir(), + 'bd': meson.current_build_dir(), + 'regress': { + 'sql': [ + 'tablefunc', + ], + }, +} |