|
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 TEMPLATE=app |
|
18 TARGET=mylocationsengine |
|
19 CONFIG += Qt |
|
20 DEPENDPATH += . |
|
21 INCLUDEPATH += . |
|
22 INCLUDEPATH += ../inc |
|
23 INCLUDEPATH += ../../inc |
|
24 INCLUDEPATH += ../geocodeupdate/inc |
|
25 INCLUDEPATH += ../mylocationlogger/inc |
|
26 |
|
27 symbian: { |
|
28 |
|
29 TARGET.UID3 = 0x2002680A |
|
30 isEmpty(TARGET.EPOCSTACKSIZE):TARGET.EPOCSTACKSIZE = 0x6000 |
|
31 isEmpty(TARGET.EPOCHEAPSIZE):TARGET.EPOCHEAPSIZE = 20480 \ |
|
32 16943040 |
|
33 TARGET.CAPABILITY = ALL -TCB |
|
34 |
|
35 LIBS += -llbs \ |
|
36 -leposlandmarks \ |
|
37 -leposlmsearchlib \ |
|
38 -leuser \ |
|
39 -leposlmdbmanlib \ |
|
40 -lcntmodel \ |
|
41 -lefsrv \ |
|
42 -ledbms \ |
|
43 -lbafl \ |
|
44 -lflogger \ |
|
45 -lQtContacts \ |
|
46 -lgeocodeupdate \ |
|
47 -lecom \ |
|
48 -lcalinterimapi \ |
|
49 -llocationdatalookupdb |
|
50 |
|
51 } |
|
52 |
|
53 SOURCES += src/appmain.cpp \ |
|
54 src/mylocationsengine.cpp \ |
|
55 src/mylocationsdatabasemanager.cpp \ |
|
56 src/mylocationslookupdb.cpp \ |
|
57 src/maptileinterface.cpp \ |
|
58 src/addresscomparision.cpp \ |
|
59 src/lookupmaptiledb.cpp \ |
|
60 src/calendernotification.cpp |
|
61 |
|
62 HEADERS += inc/appmain.h \ |
|
63 inc/mylocationsengine.h \ |
|
64 inc/mylocationslookupdb.h \ |
|
65 inc/mylocationsdatabasemanager.h \ |
|
66 inc/maptileinterface.h \ |
|
67 inc/addresscomparision.h \ |
|
68 inc/lookupmaptiledb.h \ |
|
69 inc/calendernotification.h |
|
70 |
|
71 |
|
72 |
|
73 |