blob: 3c9d54fc907779732b9bf7f58f011858e0990a9e [file] [log] [blame]
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')