Skip to content
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

Merged
merged 4 commits into from
May 19, 2021
Merged

macOS and win packages #1438

merged 4 commits into from
May 19, 2021

Conversation

gcask
Copy link
Contributor

@gcask gcask commented May 19, 2021

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.

gcask added 2 commits May 18, 2021 20:24
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.
@gcask
Copy link
Contributor Author

gcask commented May 19, 2021

@JonathanILevi fyi.

@JonathanILevi
Copy link
Contributor

WiX is a Windows tool, is it not? EE is cross compiled on a Linux machine, maybe msitools' reimplementation of WiX will work?

@JonathanILevi
Copy link
Contributor

This is a solution for #1003.

@gcask
Copy link
Contributor Author

gcask commented May 19, 2021

WiX is a Windows tool, is it not?

Yes, although that shouldn't be a problem for you right? If you want a windows installer, you probably run a windows system :)

EE is cross compiled on a Linux machine, maybe msitools' reimplementation of WiX will work?

True for the current official releases.
But I will go on a limb and say that I don't think official release will care to maintain windows installers for a while. If ever.

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)

@JonathanILevi
Copy link
Contributor

Why wouldn't the official release have an installer?!

@daid
Copy link
Owner

daid commented May 19, 2021

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.

@daid daid merged commit 863d07e into daid:master May 19, 2021
@gcask gcask deleted the mac-win-packages branch May 19, 2021 13:35
@JonathanILevi
Copy link
Contributor

Yeah, that would be a reason. I already have a solution which works on Linux though #1003.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants