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.
13 lines
274 B
13 lines
274 B
5 years ago
|
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,
|
||
|
)
|