-
-
Notifications
You must be signed in to change notification settings - Fork 100
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 |
That's what we're doing with Deskflow since there's no For Synergy we configure full-blown WiX manually like you're doing, and we use a naughty merge module (we were using them since before Microsoft deprecated them), but we plan to move to |
81e8d51
to
72e3fa7
Compare
72e3fa7
to
64d5058
Compare
Crazy how difficult this stuff is on windows compared to Linux ... |
No description provided.