diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-09-05 21:12:56 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-05-02 19:28:35 -0400 |
| commit | 0e7fb07f915b7a2b04df209fbacd92aca19c87af (patch) | |
| tree | 6ac78a24a7a2682e5ec49e69e9bf56a09a9bf68c /test cases/python/7 install path | |
| parent | 4a2530802c8d1d7a92f3f9b4b9683636ba5c92e1 (diff) | |
| download | meson-0e7fb07f915b7a2b04df209fbacd92aca19c87af.tar.gz | |
python module: add an automatic byte-compilation step
For all source `*.py` files installed via either py.install_sources() or
an `install_dir: py.get_install_dir()`, produce `*.pyc` files at install
time. Controllable via a module option.
Diffstat (limited to 'test cases/python/7 install path')
| -rw-r--r-- | test cases/python/7 install path/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test cases/python/7 install path/meson.build b/test cases/python/7 install path/meson.build index 22e33c653..2cac6523c 100644 --- a/test cases/python/7 install path/meson.build +++ b/test cases/python/7 install path/meson.build @@ -1,7 +1,8 @@ project('install path', default_options: [ + 'python.bytecompile=-1', 'python.purelibdir=/pure', - 'python.platlibdir=/plat' + 'python.platlibdir=/plat', ] ) |
