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