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