Last change
on this file since 244 was 2, checked in by Dmitry A. Kuminov, 16 years ago |
Initially imported qt-all-opensource-src-4.5.1 from Trolltech.
|
File size:
650 bytes
|
Line | |
---|
1 | //! [0]
|
---|
2 | export PATH=path/to/cross/compiler:$PATH
|
---|
3 | //! [0]
|
---|
4 |
|
---|
5 |
|
---|
6 | //! [1]
|
---|
7 | ./configure -embedded arm -xplatform qws/linux-arm-g++ <other options>
|
---|
8 | //! [1]
|
---|
9 |
|
---|
10 |
|
---|
11 | //! [2]
|
---|
12 | cp path/to/QtEmbedded/mkspecs/qws/linux-mips-g++/...
|
---|
13 | path/to/QtEmbedded/mkspecs/qws/linux-myarchitecture-g++/...
|
---|
14 | //! [2]
|
---|
15 |
|
---|
16 |
|
---|
17 | //! [3]
|
---|
18 | cd path/to/QtEmbedded
|
---|
19 | ./configure -embedded <architecture> -qt-kbd-<keyboarddriver>
|
---|
20 | -qt-mouse-<mousedriver> -qt-gfx-<screendriver>
|
---|
21 | //! [3]
|
---|
22 |
|
---|
23 |
|
---|
24 | //! [4]
|
---|
25 | cd path/to/QtEmbedded
|
---|
26 | ./configure <other options>
|
---|
27 | -L /path/to/libjpeg/libraries -I /path/to/libjpeg/headers
|
---|
28 | //! [4]
|
---|
29 |
|
---|
30 |
|
---|
31 | //! [5]
|
---|
32 | cd path/to/myApplication
|
---|
33 | qmake -project
|
---|
34 | qmake
|
---|
35 | make
|
---|
36 | //! [5]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.