blob: 3a9ddab5940d84dfd7f3a75e9225d1cd7669245e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
foreach script : [
'git-completion.bash',
'git-completion.tcsh',
'git-completion.zsh',
'git-prompt.sh'
]
if meson.version().version_compare('>=1.3.0')
test_dependencies += fs.copyfile(script)
else
configure_file(
input: script,
output: script,
copy: true,
)
endif
endforeach
|