Is it possible to exclude items which are in the cmake install manifest from the wheel?
As it turns out, we were able to do a fully static build of everything in our scikit-build wheel to avoid relocation issues, but te resulting wheel includes the .a, as well as the cmake config files and other artefacts from the dependencies. Since all we produce is an executable, we could completely remove all of that...
Is it possible to exclude items which are in the cmake install manifest from the wheel?
As it turns out, we were able to do a fully static build of everything in our scikit-build wheel to avoid relocation issues, but te resulting wheel includes the
.a, as well as the cmake config files and other artefacts from the dependencies. Since all we produce is an executable, we could completely remove all of that...