1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*!
|
---|
43 | \page windowsce-customization.html
|
---|
44 | \ingroup qtce
|
---|
45 | \title Windows CE - Working with Custom SDKs
|
---|
46 | \brief How to set up Qt for use with custom Windows CE SDKs.
|
---|
47 |
|
---|
48 | When working with a custom SDK for Windows CE, Qt provides an easy way
|
---|
49 | to add support for it to your development environment. The following is
|
---|
50 | a tutorial that covers how to create a specification for Qt on Windows
|
---|
51 | CE platforms.
|
---|
52 |
|
---|
53 | \tableofcontents
|
---|
54 |
|
---|
55 | \section1 Creating a Custom Build Specification
|
---|
56 |
|
---|
57 | Create a subdirectory in the \c mkspecs folder of the Qt directory.
|
---|
58 | New specifications for Qt for Windows CE following this naming convention:
|
---|
59 |
|
---|
60 | \snippet doc/src/snippets/code/doc_src_wince-customization.qdoc 0
|
---|
61 |
|
---|
62 | Using this convention makes it possible for \l{qmake} to identify that
|
---|
63 | you are building Qt for Windows CE, and will customize the compilation
|
---|
64 | process accordingly.
|
---|
65 |
|
---|
66 | Create the files \c qmake.conf and \c qplatformdefs.h inside the new
|
---|
67 | specification directory. Take a look at the implementation of the other
|
---|
68 | Windows CE specifications included in the \c mkspecs directory to see
|
---|
69 | what is required to build Qt for Windows CE successfully.
|
---|
70 |
|
---|
71 |
|
---|
72 | \section1 Fine-Tuning Options
|
---|
73 |
|
---|
74 | Compared to the desktop versions, Qt for Windows CE needs two additional
|
---|
75 | options:
|
---|
76 |
|
---|
77 | \list
|
---|
78 | \o \bold{CE_SDK} specifies the name of the SDK.
|
---|
79 | \o \bold{CE_ARCH} specifies information about the target architecture.
|
---|
80 | \endlist
|
---|
81 |
|
---|
82 | Following is an example configuration for the Windows Mobile 5 for
|
---|
83 | Pocket PC SDK:
|
---|
84 |
|
---|
85 | \snippet doc/src/snippets/code/doc_src_wince-customization.qdoc 1
|
---|
86 |
|
---|
87 | \note \l{qmake} uses this information to build a valid Visual Studio
|
---|
88 | project file. You need to ensure that they are identical to the
|
---|
89 | configuration of the custom SDK, otherwise you might not be able to compile
|
---|
90 | or debug your project with Visual Studio.
|
---|
91 |
|
---|
92 | Additionally, most Windows CE SDKs use extra compiler options. These
|
---|
93 | can be specified by expanding the \c DEFINES value.
|
---|
94 |
|
---|
95 | For example, with Windows Mobile 5 for Pocket PC, the \c DEFINES variable
|
---|
96 | is expanded in the following way:
|
---|
97 |
|
---|
98 | \snippet doc/src/snippets/code/doc_src_wince-customization.qdoc 2
|
---|
99 |
|
---|
100 | The mkspec may require additional configuration to be used inside of Visual
|
---|
101 | Studio, depending on the Windows CE SDK. The above example defines
|
---|
102 | \c _M_ARM. This definition is available internally in Visual Studio. Hence,
|
---|
103 | the compiler will warn you about redefinition during the build step. These
|
---|
104 | warnings can be disabled by adding a \c default_post.prf file containing
|
---|
105 | the following lines, within the subdirectory.
|
---|
106 |
|
---|
107 | \snippet doc/src/snippets/code/doc_src_wince-customization.qdoc 8
|
---|
108 |
|
---|
109 |
|
---|
110 | \section1 Cross-compilation Environment for a Custom SDK
|
---|
111 |
|
---|
112 | Qt for Windows CE supports a convenience script, \c{setcepaths.bat}, that
|
---|
113 | prepares the environment in a command prompt for cross-compilation.
|
---|
114 | However, on custom SDKs, the \c checksdk tool is provided to identify the
|
---|
115 | environment, so Qt compiles successfully.
|
---|
116 |
|
---|
117 | \c checksdk is generated during the \c configure step and allows for the
|
---|
118 | following options:
|
---|
119 |
|
---|
120 | \list
|
---|
121 | \o \c list: Returns a list of available Windows CE SDKs. (This list
|
---|
122 | may contain one or more SDKs not supported on Qt for Windows CE,
|
---|
123 | e.g., Pocket PC 2003.)
|
---|
124 | \o \c sdk: The parameter to specify an SDK. Returns a setup of
|
---|
125 | environment variables that must be set to cross-compile Qt.
|
---|
126 | \o \c script: Stores your setup in a \c{.bat} file. This simplifies
|
---|
127 | the process of switching environments when you load a command
|
---|
128 | prompt in future.
|
---|
129 | \endlist
|
---|
130 |
|
---|
131 |
|
---|
132 | \section1 Compiling Qt for a Custom SDK
|
---|
133 |
|
---|
134 | Windows CE is highly customizable, hence it is possible that some SDKs have
|
---|
|
---|