summaryrefslogtreecommitdiff
path: root/perl/Git/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'perl/Git/meson.build')
-rw-r--r--perl/Git/meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/perl/Git/meson.build b/perl/Git/meson.build
new file mode 100644
index 0000000000..a61b7b1f4a
--- /dev/null
+++ b/perl/Git/meson.build
@@ -0,0 +1,19 @@
+foreach source : [
+ 'I18N.pm',
+ 'IndexInfo.pm',
+ 'LoadCPAN.pm',
+ 'Packet.pm',
+ 'SVN.pm',
+]
+ test_dependencies += custom_target(
+ input: source,
+ output: source,
+ command: generate_perl_command,
+ install: true,
+ install_dir: perllibdir / 'Git',
+ depends: [git_version_file],
+ )
+endforeach
+
+subdir('LoadCPAN')
+subdir('SVN')