author | John Kern <johnk@symbian.org> |
Thu, 19 Aug 2010 13:16:27 -0700 | |
changeset 35 | 0cb8cc1ee8f5 |
parent 34 | 93c5a58496b6 |
child 36 | 2886a23e4d5d |
permissions | -rwxr-xr-x |
34
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
1 |
#------------------------------------------------- |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
2 |
# |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
3 |
# Project created by QtCreator 2010-08-03T16:15:24 |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
4 |
# |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
5 |
#------------------------------------------------- |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
6 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
7 |
QT += core gui sql svg |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
8 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
9 |
TARGET = contactengine |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
10 |
TEMPLATE = app |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
11 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
12 |
CONFIG += debug |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
13 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
14 |
SOURCES += main.cpp\ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
15 |
mainwindow.cpp \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
16 |
contactsengine.cpp \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
17 |
dbtools.cpp \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
18 |
detailsgv.cpp |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
19 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
20 |
HEADERS += mainwindow.h \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
21 |
contactsengine.h \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
22 |
database.h \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
23 |
dbtools.h \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
24 |
database.h \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
25 |
detailsgv.h |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
26 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
27 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
28 |
FORMS += mainwindow.ui |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
29 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
30 |
CONFIG += mobility |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
31 |
MOBILITY = contacts |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
32 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
33 |
unix:INCLUDEPATH += /home/johnk/libs/include/QtContacts /home/johnk/libs/include/ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
34 |
unix:LIBS += -L/home/johnk/libs/lib -lQtContacts |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
35 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
36 |
databasefiles.sources = contacts.csv |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
37 |
databasefiles.path = . |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
38 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
39 |
DEPLOYMENT += databasefiles |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
40 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
41 |
symbian { |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
42 |
TARGET.UID3 = 0xec200759 |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
43 |
TARGET.CAPABILITY += ReadUserData WriteUserData |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
44 |
TARGET.EPOCSTACKSIZE = 0x14000 |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
45 |
TARGET.EPOCHEAPSIZE = 0x020000 0x800000 |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
46 |
} |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
47 |
|
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
48 |
RESOURCES += \ |
93c5a58496b6
add graphics view which presents contacts details
John Kern <johnk@symbian.org>
parents:
28
diff
changeset
|
49 |
resouce.qrc |