-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a Windows msi installer #280
base: main
Are you sure you want to change the base?
Conversation
Todos
|
Do Rust binaries depend on MSVC? Just curious. I'm pretty sure Rust uses MSVC Toolchain by default. If it does, you may want to add an MSVC dependency to the WiX config. Here's how I did it recently: https://github.com/deskflow/deskflow/blob/0e3cee628751ed7be70f065e182ea9c7614f2378/deploy/windows/wix-patch.xml.in You can also use WiX |
Yes, it seems to require I guess you are refering to https://learn.microsoft.com/en-us/cpp/windows/redistributing-components-by-using-merge-modules?view=msvc-160 / https://learn.microsoft.com/en-us/cpp/windows/deployment-in-visual-cpp?view=msvc-160#central-deployment? Is there any proper documentation on how to do this? I found the wix documentation to be somewhat incomplete. |
Unfortunately, I did not, just had to muddle my way through it, sadly. For WiX, |
Thank you! It seems reasonable for various reasons to not have every application ship their own copy of the dlls. I'm going to check out |
No description provided.