blob: 40c1b8c9521087fb440e7940511e4f0e86bb54f9 [file] [log] [blame]
project('test')
mod_py = import('python3')
python = mod_py.find_python()
test_target = custom_target(
'test_target',
input : [files('gen.py'), files('foo')],
output : 'bar',
command : [python, '@INPUT0@', '@INPUT1@', '@OUTPUT@'],
build_by_default : true,
)