diff options
Diffstat (limited to 'perl/Git/SVN/meson.build')
-rw-r--r-- | perl/Git/SVN/meson.build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/perl/Git/SVN/meson.build b/perl/Git/SVN/meson.build new file mode 100644 index 0000000000..8858985fe8 --- /dev/null +++ b/perl/Git/SVN/meson.build @@ -0,0 +1,21 @@ +foreach source : [ + 'Editor.pm', + 'Fetcher.pm', + 'GlobSpec.pm', + 'Log.pm', + 'Migration.pm', + 'Prompt.pm', + 'Ra.pm', + 'Utils.pm', +] + test_dependencies += custom_target( + input: source, + output: source, + command: generate_perl_command, + install: true, + install_dir: perllibdir / 'Git/SVN', + depends: [git_version_file], + ) +endforeach + +subdir('Memoize') |