Windows CE - Introduction to using QtRequired toolsIn order to use Qt for Windows CE you need to have Visual Studio 2005 or 2008 and at least one of the supported Windows CE/Mobile SDKs installed. Note, that the Visual Studio 2008 Standard Edition doesn't come with Windows CE support. You will need the Professional Edition, if you're using Visual Studio 2008. We recommend the Windows Mobile 5.0 SDK for Pocket PC SDK available here. Installing QtFollow the instructions found in Installing Qt for Windows CE. Building your own applicationsIf you are new to Qt development, have a look at How to Learn Qt and Tutorials. In general there is little or no difference in developing Qt applications for Windows CE compared to any of the other platforms supported by Qt. Once you have a .pro file, there are two ways of building your application. You can either do it on the command line or inside of Visual Studio. To do it on the command line, simply write: qmake nmake To build the project inside of Visual Studio, on the command line write: qmake -tp vc then start Visual Studio with the generated .vcproj or .sln file and select Build project. For more information on how to use qmake have a look at the qmake Tutorial. Running the applicationIn order to run the application, it needs to be deployed on the Windows CE/Mobile device you want to test it for. This can either be done manually or automated using Visual Studio. To do it manually, simply copy the executable, the Qt .dll files needed for the application to run, and the C-runtime library into a folder on the device, and then click on the executable to start the program. You can either use the Explorer found in ActiveSync or the Remote File Viewer found in Visual Studio to do this. Visual Studio can do this step automatically for you as well. If you have built the project inside Visual Studio, simply select Deploy and then Debug to deploy and then run the application. You can change the device type by changing the Target Device specified in the Visual Studio toolbar. Further information on deploying Qt applications for Windows can be found in the deployment document. © 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia. Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. |