diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-12-12 08:30:28 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-12-12 08:30:28 +0100 |
commit | 5c4667706712b6d58c69afd04617f876ca4d662f (patch) | |
tree | 5c68b0b37f827898c458aa6642bccf33f17a3aa3 /perl/Git/SVN/meson.build | |
parent | Merge branch 'cw/worktree-extension' into ps/ci-meson (diff) | |
parent | Introduce support for the Meson build system (diff) | |
download | git-5c4667706712b6d58c69afd04617f876ca4d662f.tar.xz git-5c4667706712b6d58c69afd04617f876ca4d662f.zip |
Merge branch 'ps/build' into ps/ci-meson
* ps/build: (24 commits)
Introduce support for the Meson build system
Documentation: add comparison of build systems
t: allow overriding build dir
t: better support for out-of-tree builds
Documentation: extract script to generate a list of mergetools
Documentation: teach "cmd-list.perl" about out-of-tree builds
Documentation: allow sourcing generated includes from separate dir
Makefile: simplify building of templates
Makefile: write absolute program path into bin-wrappers
Makefile: allow "bin-wrappers/" directory to exist
Makefile: refactor generators to be PWD-independent
Makefile: extract script to generate gitweb.js
Makefile: extract script to generate gitweb.cgi
Makefile: extract script to massage Python scripts
Makefile: extract script to massage Shell scripts
Makefile: use "generate-perl.sh" to massage Perl library
Makefile: extract script to massage Perl scripts
Makefile: consistently use PERL_PATH
Makefile: generate doc versions via GIT-VERSION-GEN
Makefile: generate "git.rc" via GIT-VERSION-GEN
...
Diffstat (limited to 'perl/Git/SVN/meson.build')
-rw-r--r-- | perl/Git/SVN/meson.build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/perl/Git/SVN/meson.build b/perl/Git/SVN/meson.build new file mode 100644 index 0000000000..8338531041 --- /dev/null +++ b/perl/Git/SVN/meson.build @@ -0,0 +1,20 @@ +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: get_option('datadir') / 'perl5/Git/SVN', + ) +endforeach + +subdir('Memoize') |