equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 # All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Nokia Corporation - initial contribution. |
|
11 # |
|
12 # Contributors: |
|
13 # |
|
14 # Description: |
|
15 # |
|
16 # |
|
17 |
|
18 |
|
19 AppDep building instructions |
|
20 ============================ |
|
21 |
|
22 Windows platform |
|
23 ---------------- |
|
24 |
|
25 1) Set up MinGW and MSYS compiling environments |
|
26 - Download MinGW installer 5.0.2 (or newer) from http://www.mingw.org |
|
27 - Install MinGW including GCC compiler with version number at least 3.4.2 |
|
28 - Download and install MSYS environment from http://www.mingw.org with |
|
29 version number at least 1.0.11 |
|
30 - Set "bin"-directories of both MinGW and MSYS to your path environment, eg |
|
31 SET PATH=C:\APPS\MinGW\bin;C:\APPS\MSYS\bin;%PATH% |
|
32 |
|
33 2) Download Boost v1.33.1 from http://www.boost.org or directly from |
|
34 http://sourceforge.net/project/showfiles.php?group_id=7586. Install it to any |
|
35 folder |
|
36 |
|
37 3) Modify "BOOSTHOME"-variable in a file "group/MakeFile" in AppDep installation to |
|
38 point to the directory where you installed Boost. |
|
39 |
|
40 4) With command prompt, go to the same "group" directory and type "make". |
|
41 |
|
42 |
|
43 |
|
44 Any other platform |
|
45 ------------------ |
|
46 |
|
47 Set up GCC compiling environment as usually and follow steps 2-4 just like in the |
|
48 instructions for Windows platform. |
|
49 |