blob: 1bcfc0672dd8974d3271d6fc8d5debea0469f652 (
plain)
1
2
3
4
5
6
7
8
|
project('plain name many inputs', 'c')
catfiles = find_program('catfiles.py')
custom_target('plainname-inputs',
input : ['1.txt', '2.txt'],
output : '@PLAINNAME@.dat',
command : [catfiles, '@INPUT@', '@OUTPUT@'])
|