QPSQL driver not available nor loaded on deployment tests.
-
This was happening on the release version as well. I'll give this a try though, and let you know the results!
-
You can also check that tripleboot.org article. It analyses the process pretty well.
-
The windeploy tool worked! (previous employer included QT in the builds itself so this type of bs never existed beforehand... and my cm experience is minimal!) Thank you for notifying me of that. Application loads it's configuration and accesses the database without the need to build now!
Quick question, would a simple post build event for the windeploy.exe tool in the release version just look like this:
windeploy.exe $(OutDir) --release
or is there anything else special I would need to do? This is just territory I'm not used to due to lack of experience with post build events... so just making sure!
-
No, a post build event should be fine.
Are you using a package manager to create an installer for your application ? If so, it's a step I would rather add there.
-
No, a post build event should be fine.
Are you using a package manager to create an installer for your application ? If so, it's a step I would rather add there.
@SGaist Not yet. This is the furthest I've gotten since this software is only a few months going in the creation phase, but it's on the list of things to figure out how to use (like I said, minimal cm background) for cloud server deployment. Any suggestions on what I should use (or maybe this is the wrong question to ask)?
-
Cloud Server Deployment ? Can you give more details about that ?
-
@SGaist Not yet. We're a month or two away from beginning that phase of the planning.
-
Well, if the application should be installed on a virtual windows somewhere in a cloud then you have several options like InnoSetup or NSIS (used e.g. by cmake)
-
Well, if the application should be installed on a virtual windows somewhere in a cloud then you have several options like InnoSetup or NSIS (used e.g. by cmake)
@SGaist Good to know. I've written those down to investigate for a later tasking. Thanks again!
-
There's also QIF, the Qt Installer Framework that you should take a look at. It has several interesting features like the update handling.