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.
 
 
 
 
 
 

378 B

python3 module is deprecated

A generic module python has been added in Meson 0.46.0 and has a superset of the features implemented by the previous python3 module.

In most cases, it is a simple matter of renaming:

py3mod = import('python3')
python = py3mod.find_python()

becomes

pymod = import('python')
python = pymod.find_installation()