diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-06-03 07:54:11 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-06-03 07:54:11 (GMT) |
commit | 5ef34ed91918402aabc10cee5b790df619cf2783 (patch) | |
tree | 06a469c17f9628a1cdff6fe073438d14df6c0fd1 /doc | |
parent | a8890b53f544ca7baccf91916b179e63dfbbda50 (diff) | |
download | Qt-5ef34ed91918402aabc10cee5b790df619cf2783.zip Qt-5ef34ed91918402aabc10cee5b790df619cf2783.tar.gz Qt-5ef34ed91918402aabc10cee5b790df619cf2783.tar.bz2 |
S60 installation docs update.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/installation.qdoc | 28 | ||||
-rw-r--r-- | doc/src/snippets/code/doc_src_installation.qdoc | 9 |
2 files changed, 29 insertions, 8 deletions
diff --git a/doc/src/installation.qdoc b/doc/src/installation.qdoc index 319420b..7cd7b0c 100644 --- a/doc/src/installation.qdoc +++ b/doc/src/installation.qdoc @@ -508,13 +508,22 @@ in the \l{Qt for Windows CE Requirements} document. \list 1 \o Install needed IDE and SDKs - Make sure you have the following installed: + Make sure you have the following installed on your development PC: \list \o \l{http://www.forum.nokia.com/main/resources/tools_and_sdks/carbide_cpp/}{Carbide.c++ v2.0.0 or higher} \o \l{http://www.forum.nokia.com/main/resources/tools_and_sdks/S60SDK/}{S60 Platform SDK 3rd Edition FP1 or higher} - \o \l{http://www.forum.nokia.com/main/resources/technologies/openc_cpp/}{Open C/C++ for S60 3rd Edition} (automatically included in 3.2 and higher) + \o \l{http://www.forum.nokia.com/main/resources/technologies/openc_cpp/}{Open C/C++ v1.6.0 or higher}. + Install this to all S60 SDKs you plan to use Qt with. \endlist + Make sure you have the following packages installed on any device you want to use to run Qt applications. + These packages can be found under \c nokia_plugin directory in any S60 SDK where you have installed Open C/C++: + \list + \o pips_s60_<version>.sis + \o openc_ssl_s60_<version>.sis + \o stdcpp_s60_<version>.sis + \endlist + These instructions assume the above tools are installed and that the enviroment variables for your compiler are set correctly. @@ -568,13 +577,16 @@ in the \l{Qt for Windows CE Requirements} document. We've included a subset of the Qt demos in this package for you to try out. An excellent starting point is the "fluidlauncher" demo. To run the demo on a real device, you first have to install - the Qt libraries and the demo on the device. - Install \c{qt_libs.sis} and \c{fluidlauncher.sis} - found at Qt installation folder to the device. + \c{qt_libs.sis} and \c{fluidlauncher.sis} + found at Qt installation directory to the device. - To run the demos on the emulator, navigate to - \c{%EPOCROOT%\Epoc32\release\winscw\udeb\} and start any of the - Qt demos located there, for example: + To run the demos and examples on the emulator, you need to build them first: + + \snippet doc/src/snippets/code/doc_src_installation.qdoc 25 + + After building, you can run demos and examples by navigating to + \c{%EPOCROOT%\Epoc32\release\winscw\udeb\} and starting any of the + Qt demos and examples located there. For example: \snippet doc/src/snippets/code/doc_src_installation.qdoc 26 diff --git a/doc/src/snippets/code/doc_src_installation.qdoc b/doc/src/snippets/code/doc_src_installation.qdoc index 8730125..d698f4a 100644 --- a/doc/src/snippets/code/doc_src_installation.qdoc +++ b/doc/src/snippets/code/doc_src_installation.qdoc @@ -137,6 +137,15 @@ configure -platform win32-mwc -xplatform symbian-abld make debug-winscw //! [24] +//! [25] +cd examples +qmake +make +cd ..\demos +qmake +make +//! [25] + //! [26] wiggly.exe -small-screen |