blob: 2d4ab1c4a986f71d44f77275b8126d1d671e538e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
test_dependencies += custom_target(
input: 'Git.pm',
output: 'Git.pm',
command: generate_perl_command,
install: true,
install_dir: get_option('datadir') / 'perl5',
depends: [git_version_file],
)
subdir('Git')
if get_option('perl_cpan_fallback')
subdir('FromCPAN')
endif
|