Devloping a multi-platform PC software
-
First thing you should know: "A Qt program requires individual building or compilation for each platform that it supports".
You should have different types of Operating System/Platforms (Windows, Linux, etc) installed in different machines or in a VM. Each Platform should have Qt installed along with "Native Compilers" [GCC for linux, VS/MinGW for windows, etc.)
-
[quote author="ahdbk" date="1362476089"]Thanks
and for the deployment phase ?[/quote]
When deploying, you just need to package your app along with other required libraries (.dll in windows, etc.) and with other plugins that you need. Use NSIS, Inno Setup, etc. if you need to create an installer.
-
Thanks for your help
[quote author="Code_ReaQtor" date="1362480694"] [quote author="ahdbk" date="1362476089"]Thanks and for the deployment phase ?[/quote] When deploying, you just need to package your app along with other required libraries (.dll in windows, etc.) and with other plugins that you need. Use NSIS, Inno Setup, etc. if you need to create an installer.[/quote]