-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.TXT
37 lines (27 loc) · 1.38 KB
/
README.TXT
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
####### How to build it on win32 system ?
1. First of all you should have the following components properly installed.
a. Visual C++ (express edition will do.)
b. QT 4.x for MSVC (http://qt.nokia.com/)
c. Python 2.7.x (http://www.python.org/)
d. Scons 2.0 or later. (http://www.scons.org/)
2. Assume that your project is located at "X:\somepath\webkara\".
Open "X:\somepath\webkara\Sconstrct" with an txt editor, find:
if sys.platform=="win32":
env['QT4DIR'] = "" # the path to your own QT folder
Change the path to where your QT was installed.
3. Then enter DOS command line, "cd" to the project folder, excute:
X:\somepath\webkara>build.py
That's all.
####### How to build it on linux server ?
1. Make sure you have a 8580 workspace, perform a full build.
2. The project is located at "BDP_Linux/mtk/source/webkara" by default.
"cd" to that folder, and excute:
someone$ build.py
Thas't all.
####### What are those folders for ?
In the beginning you will see these folders:
./source source code, including some internal libraries.
./tools/* python script to help build.
After a sucessful build, you will find:
./.temp objects files, qt precompiled files, etc.
./build excutable files.