-
Notifications
You must be signed in to change notification settings - Fork 189
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
macOS and win packages #1438
macOS and win packages #1438
Conversation
Provides a way to generate MSI installer for windows (through WiX), and DMG packages on macOS. This covers part of daid#1003 .
To build MSI via WIX, we need some extra catering around the components and version.
@JonathanILevi fyi. |
WiX is a Windows tool, is it not? EE is cross compiled on a Linux machine, maybe |
This is a solution for #1003. |
Fix macOS install prefix.
Yes, although that shouldn't be a problem for you right? If you want a windows installer, you probably run a windows system :)
True for the current official releases. See this like the macOS packages: provided as a convenience for some users, but not part of the "official" releases in any capacity (again, wild assumption) |
Why wouldn't the official release have an installer?! |
Because they get cross compiler on linux by my CI server. Maybe it is possible to run WIX in Wine and build the installer that way. I've done that before with NSIS to build software releases on windows. |
Yeah, that would be a reason. I already have a solution which works on Linux though #1003. |
This provides the basics for generate DMG packages on macOS (the 'app bundle'... thingy) as well as generating Windows MSI installer via WIX (from #1003 ).
macOS
It was actually pretty close: the forced install prefix was actually messing up the DMG pipeline, and the deployment target had to be an environment variable instead of a regular CMake one... and be defined very early.
Minor tweak relying on the
TARGET_BUNDLE_CONTENT_DIR
target property.Lastly, the homebrew sfml version isn't really portable - I've only had success with the Frameworks version that SFML ships.
Should this PR pass, I'll update the wiki documentation with the new instructions.
Windows
This one was a lot more painful that it should be, but it is working.
WIX has a lot of... needs you need to accomodate: the major version number cannot be greater than 256 (a wix limitation, not msi nor windows nor microsoft), so some hoop jumping required there.
There was some extra variables to set up to get a nice clean MSI, but now it is there.
Moreover, it does allow for different versions to be installed side-by-side.
The current caveat is if you install under the standard ProgramFiles tree, you will need to run as a privileged user - but this is getting addressed in #1437.
It could be prettier, but hopefully in a good enough shape to be used/redistributed by users who really want an installer - all that's required is having WIX installed on the dev machine (it is part of the standard git actions provisioning), and pass
CPACK_GENERATOR=WIX
.It does not break the ZIP generation, and in fact you can even generate both at the same time.