So now I can make a .exe of my application. Now how do I get my application ready to deploy for windows?
This is meant to be the canonical question for Qt application deployment issues on Windows.
The Qt documentation has pages for that:
Qt 5,
Qt 4.
Related
Is it possible to use the concurrency visualizer when developing for the UWP?
I've installed the plugin but i can't seem to get it working.
Yes you can. Just use the Attach to process.. option to connect to a running UWP app.
I am a newbie trying mobile application development using Qt. I am currently trying to deploy my Qt UI application on iOS devices. The application runs perfectly on my iPad. The only problem is the screen orientation. I can see only half of the application when I rotate my iPad to the landscape mode.
I searched through this site, but most of the sites actually talk about Qt Quick application solutions. My application is a Qt UI application.
As BaCaRoZzo suggested, it was indeed an issue with Qt 5.3.2. I downloaded the beta version of Qt 5.4.0 for mac and tried running it. Now I don't get the orientation error.
Thanks BaCaRoZzo and everyone.
Regards
Alok
hi i want to make an application for nokia in nokia qt sdk.
i select mobile application when i create new project but when i run the project it built the exe file of my project i want a sis file so i can check it on my nokia device.
please give me the suggesion how i develop my project for nokia mobile in nokia qt sdk
Does this help ?
http://www.forum.nokia.com/Develop/Qt/Getting_started/Step_3.xhtml
I want to create an installer for windows service built in C++. I have followed this article to create the Service.
I have 3 win32 console application in my solution. one for installation , one for uninstallation and one that does the actual work.
I must humbly recommend WiX (Windows Installer XML Toolset) for all your installer needs.
I'm not familiar with Qt or with Google Native Client. Is it possible for a TRIVIAL Qt console application to be ported to Google Native Client? I understand that some work would be involved. But the question is, how much if it's even possible?
A Qt developer has managed to get some Qt examples running under Native Client:
http://blog.qt.io/blog/2009/12/17/take-it-with-a-grain-of-salt/
Qt now has an official Native Client SDK:
http://qt-project.org/wiki/Qt_for_Google_Native_Client
Qt for Google Native Client Preview also updated here: http://qt-project.org/wiki/Qt_for_Google_Native_Client
Since you can't use system calls, you'd need to essentially port Qt to a new OS (ie, Native Client). This'll be a lot of work - good luck!
For those who are interested in using Qt with NaCl, I have made a Docker image containing Qt compiled with NaCl :
Link to Docker Image
You will just need to follow the instructions to get your application compiled.
There is also a video showing the process of compiling Qt with NaCl. At the end of this video, there is an example:
Link to video of Qt compiled with NaCl
Hope this help