-
Notifications
You must be signed in to change notification settings - Fork 164
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
Bump Qt and CI script versions, fix macOS support, and drop support for qmake #98
Conversation
Bumping the Qt acquisition script should fix build errors in CI.
I've bumped the versions to the latest micro versions available. Nevertheless, the Qt 5s fail to build, with linker undefined symbol errors that occur after bumping |
Looks like on MacOS it tries to build it for ARM, but Qt binaries are for x86. |
Attempt at getting QMake builds to work on both Windows and macOS
Move architecture specification into qmake project file.
QMake is on its way out. This should give projects one more reason to move over to CMake.
@Shatur I got CI fixed for all systems using CMake. I couldn't get the qmake build to work with Windows, I don't normally work on Windows and QMake is being phased out anyways, so I opted to remove those builds from CI in the end. Feel free to re-add them and fix whatever issue is left. Here is the commit that got the closest to getting qmake to work everywhere: 57525e0 |
I'm on board with removing qmake. Could you remove the qmake file completely? |
Done. All files pertaining qmake have been removed. |
Thank you! |
Bumping the Qt acquisition script should fix build errors in CI.