blob: 18408fb25db7295c0394fa0912f3e4706e5b8575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
project('multiple dir configure file')
subdir('subdir')
configure_file(input : 'subdir/someinput.in',
output : 'outputhere',
copy: true)
configure_file(input : cfile1,
output : '@BASENAME@',
copy: true)
|