summaryrefslogtreecommitdiffstats
path: root/perl/Git/SVN/meson.build
blob: 8338531041d8e5cd4e8c2c8a0c3dcfc8b2d23cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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')