21 lines
363 B
Meson
21 lines
363 B
Meson
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')
|