blob: 259209d7302809b6c1d3249d9d21548515c31c77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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: get_option('datadir') / 'perl5/Git',
)
endforeach
subdir('LoadCPAN')
subdir('SVN')
|