can i create a executable from meson package using pyinstaller #9962
-
If i create an executable from meson using pyinstaller, do i loose some of meson's functionalities? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
That should work perfectly fine, Meson's own Windows installer uses pyinstaller to bundle Meson with python, ninja, pkg-config, etc. Check out the |
Beta Was this translation helpful? Give feedback.
-
As an alternate solution you can also use a binary distribution that already packs meson with an embedded python, and results in a standalone archive that has no system dependencies and can be installed in any location. For details, please see the xPack Meson Build releases: |
Beta Was this translation helpful? Give feedback.
That should work perfectly fine, Meson's own Windows installer uses pyinstaller to bundle Meson with python, ninja, pkg-config, etc.
Check out the
packaging/
directory.