You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This follows up on the discussion at #728 (comment). The use case is multi-language projects, like the Arrow projects, where the root of the repo contains a core C/C++ library and bindings for Python (and perhaps other languages) are present in sub-directories. This is a fairly common layout:
The challenge here is to get the top-level library built and linked against. The idea in the linked discussion is to add:
python/
dist_script.py # replaces symlink with a copy for sdist generation
subprojects/
<symlink with content `../..`>
We've seen other people struggle with this puzzle when trying to adopt meson-python, e.g. in #674. It would be good to have a test package for this project structure, and a bit of documentation to point out how this can be handled.