summaryrefslogtreecommitdiff
path: root/perl/Git/SVN/meson.build
blob: 8858985fe8660e80464550812bc91fb868c31e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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: perllibdir / 'Git/SVN',
    depends: [git_version_file],
  )
endforeach

subdir('Memoize')