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.
8 lines
370 B
8 lines
370 B
6 years ago
|
project('python kwarg')
|
||
|
|
||
|
py = import('python')
|
||
|
prog_python = py.find_installation('python3', modules : ['setuptools'])
|
||
|
assert(prog_python.found() == true, 'python not found when should be')
|
||
|
prog_python = py.find_installation('python3', modules : ['thisbetternotexistmod'], required : false)
|
||
|
assert(prog_python.found() == false, 'python not found but reported as found')
|