blob: 503df964af9a8878f16114c81f50adfce319d2aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
configure_file(input : 'someinput.in',
output : 'outputsubdir',
install : false,
copy: true)
py3 = import('python3').find_python()
cfile1 = configure_file(input : 'foo.txt',
output : 'foo.h.in',
capture : true,
command : [py3, '-c', 'print("#mesondefine FOO_BAR")'])
|