blob: 489016d980a08e0add51dc00cb603b4daa112806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
//! [0]
cd /tmp
gunzip qt-x11-opensource-desktop-%VERSION%.tar.gz # uncompress the archive
tar xvf qt-x11-opensource-desktop-%VERSION%.tar # unpack it
//! [0]
//! [1]
cd /tmp/qt-x11-opensource-desktop-%VERSION%
./configure
//! [1]
//! [2]
make
//! [2]
//! [3]
make install
//! [3]
//! [4]
PATH - to locate qmake, moc and other Qt tools
//! [4]
//! [5]
PATH=/usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
export PATH
//! [5]
//! [6]
setenv PATH /usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
//! [6]
//! [7]
PATH - to locate qmake, moc and other Qt tools
//! [7]
//! [8]
C:
cd /D C:\Qt\%VERSION%
configure
//! [8]
//! [9]
configure -platform win32-msvc
//! [9]
//! [10]
nmake
//! [10]
//! [11]
cd /tmp
gunzip qt-mac-opensource-desktop-%VERSION%.tar.gz # uncompress the archive
tar xvf qt-mac-opensource-desktop-%VERSION%.tar # unpack it
//! [11]
//! [12]
cd /tmp/qt-mac-opensource-desktop-%VERSION%
./configure
//! [12]
//! [13]
make
//! [13]
//! [14]
sudo make -j1 install
//! [14]
//! [15]
PATH - to locate qmake, moc and other Qt tools
//! [15]
//! [16]
PATH=/usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
export PATH
//! [16]
//! [17]
setenv PATH /usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
//! [17]
//! [18]
PATH - to locate qmake, moc and other Qt tools
//! [18]
//! [19]
C:
cd \Qt\%VERSION%
configure -platform win32-msvc2005 -xplatform wincewm50pocket-msvc2005
//! [19]
//! [20]
set INCLUDE=C:\Program Files\Microsoft Visual Studio 8\VC\ce\include;C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Include\Armv4i
set LIB=C:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\armv4i;C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Lib\ARMV4I
set PATH=C:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm;%PATH%
//! [20]
//! [21]
setcepaths wincewm50pocket-msvc2005
//! [21]
//! [22]
nmake
//! [22]
//! [23]
cd \Qt\%VERSION%
configure -platform win32-mwc -xplatform symbian-abld
//! [23]
//! [24]
make debug-winscw
//! [24]
//! [25]
cd examples
qmake
make
cd ..\demos
qmake
make
//! [25]
//! [27]
make run
//! [27]
//! [28]
make release-armv5
//! [28]
//! [29]
cd src\s60installs
createpackage -i qt_libs_armv5_urel.pkg <certificate file> <certificate key file>
//! [29]
//! [30]
cd embedded\fluidlauncher
createpackage -i fluidlauncher_armv5_urel.pkg
//! [30]
|