The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
274 B

project('test', 'c')
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,
)