How can I use cargo-multivers with winresource? #9
-
It appears that cargo-multivers overwrites the windows manifest that I am trying to write with https://crates.io/crates/winresource . Is there a way in which the winresource buildscript could be run after multivers for windows builds? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It is not overwritten per se, it is just not copied from the builds into the final executable. Feel free to open an issue (or a PR :)) to have proper support for this use case. We could either copy the resources from one build into the final executable or provide a custom |
Beta Was this translation helpful? Give feedback.
It is not overwritten per se, it is just not copied from the builds into the final executable.
So currently it is not supported (if you want to do it at the moment, you would have to do it manually by calling
rc.exe
likewinresource
does).Feel free to open an issue (or a PR :)) to have proper support for this use case. We could either copy the resources from one build into the final executable or provide a custom
build.rs
for the final executable.