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.
9 lines
449 B
9 lines
449 B
## New option to choose python installation environment |
|
|
|
It is now possible to specify `-Dpython.install_env` and choose how python modules are installed. |
|
|
|
- `venv`: assume that a virtualenv is active and install to that |
|
- `system`: install to the global site-packages of the selected interpreter |
|
(the one that the venv module calls --system-site-packages) |
|
- `prefix`: preserve existing behavior |
|
- `auto`: autodetect whether to use venv or system
|
|
|