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
Is your feature request related to a problem? Please describe.
On Windows, when running a xmake project using xmake run, it does append the packages .dll folders to the PATH env.
However, when trying to run using a vsxmake (and probably vs) project, it does not, resulting in a missing dll error on start.
Describe the solution you'd like
The first solution I see here is to configure vs(xmake) projects to includes packages with .dll folders in environment.
I'm thinking of a second solution which would be cool : a rule that copies .dll if necessary (newer) after build (similary to the on install we already have).
Describe alternatives you've considered
Look where the .dll were in xmake package cache and copy them, I need to do it only for newer dependencies but it's a bit frustrating.
The text was updated successfully, but these errors were encountered:
Maybe this could be supported on VS projects as well with the same code?
they are completely different implementation, if I support vs plugins, I need to do more thing. You can open a new issue, but I can’t guarantee that this version will support it
Is your feature request related to a problem? Please describe.
On Windows, when running a xmake project using
xmake run
, it does append the packages .dll folders to the PATH env.However, when trying to run using a vsxmake (and probably vs) project, it does not, resulting in a missing dll error on start.
Describe the solution you'd like
The first solution I see here is to configure vs(xmake) projects to includes packages with .dll folders in environment.
I'm thinking of a second solution which would be cool : a rule that copies .dll if necessary (newer) after build (similary to the on install we already have).
Describe alternatives you've considered
Look where the .dll were in xmake package cache and copy them, I need to do it only for newer dependencies but it's a bit frustrating.
The text was updated successfully, but these errors were encountered: