blob: 41a9a4faee9a1f320bfba1f3f4cb5e14fe437eb4 (
plain)
1
2
3
4
5
6
7
|
project('python kwarg')
py = import('python')
prog_python = py.find_installation('python3', modules : ['os', 'sys', 're'])
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')
|