diff options
Diffstat (limited to 'contrib/basebackup_to_shell')
-rw-r--r-- | contrib/basebackup_to_shell/meson.build | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/basebackup_to_shell/meson.build b/contrib/basebackup_to_shell/meson.build new file mode 100644 index 00000000000..9f0517f1701 --- /dev/null +++ b/contrib/basebackup_to_shell/meson.build @@ -0,0 +1,22 @@ +basebackup_to_shell_sources = files( + 'basebackup_to_shell.c', +) + +basebackup_to_shell = shared_module('basebackup_to_shell', + basebackup_to_shell_sources, + kwargs: contrib_mod_args, +) +contrib_targets += basebackup_to_shell + +tests += { + 'name': 'basebackup_to_shell', + 'sd': meson.current_source_dir(), + 'bd': meson.current_build_dir(), + 'tap': { + 'tests': [ + 't/001_basic.pl', + ], + 'env': {'GZIP_PROGRAM': gzip.path(), + 'TAR': tar.path()}, + }, +} |