contactengine/contactengine.pro
author John Kern <johnk@symbian.org>
Thu, 12 Aug 2010 17:06:22 -0700
changeset 26 d9f0df25b6a3
parent 25 adbe71832e2b
child 27 afa910b5ae81
permissions -rwxr-xr-x
resolved merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     1
#-------------------------------------------------
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     2
#
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     3
# Project created by QtCreator 2010-08-03T16:15:24
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     4
#
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     5
#-------------------------------------------------
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     6
25
adbe71832e2b runs on-device now; testing on 5800
John Kern <johnk@symbian.org>
parents: 24
diff changeset
     7
QT       += core gui sql
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     8
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
     9
TARGET = contactengine
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    10
TEMPLATE = app
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    11
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    12
CONFIG += debug
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    13
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    14
SOURCES += main.cpp\
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    15
        mainwindow.cpp \
20
a7451a8eb5dc Added DB framework for CSV import - doesn't work yet though
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 19
diff changeset
    16
    contactsengine.cpp \
a7451a8eb5dc Added DB framework for CSV import - doesn't work yet though
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 19
diff changeset
    17
    dbtools.cpp
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    18
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    19
HEADERS  += mainwindow.h \
20
a7451a8eb5dc Added DB framework for CSV import - doesn't work yet though
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 19
diff changeset
    20
    contactsengine.h \
a7451a8eb5dc Added DB framework for CSV import - doesn't work yet though
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 19
diff changeset
    21
    database.h \
23
51fcdd1558d8 clean up
John Kern <johnk@symbian.org>
parents: 20
diff changeset
    22
    dbtools.h \
51fcdd1558d8 clean up
John Kern <johnk@symbian.org>
parents: 20
diff changeset
    23
    database.h
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    24
25
adbe71832e2b runs on-device now; testing on 5800
John Kern <johnk@symbian.org>
parents: 24
diff changeset
    25
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    26
FORMS    += mainwindow.ui
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    27
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    28
CONFIG += mobility
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    29
MOBILITY = contacts
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    30
26
d9f0df25b6a3 resolved merge
John Kern <johnk@symbian.org>
parents: 25
diff changeset
    31
unix:INCLUDEPATH += /home/johnk/libs/include/QtContacts /home/johnk/libs/include/
d9f0df25b6a3 resolved merge
John Kern <johnk@symbian.org>
parents: 25
diff changeset
    32
unix:LIBS += -L/home/johnk/libs/lib -lQtContacts
d9f0df25b6a3 resolved merge
John Kern <johnk@symbian.org>
parents: 25
diff changeset
    33
24
2e833c2a6782 Added csv file to sis exports; improved csv file location in main.cpp
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 23
diff changeset
    34
databasefiles.sources = contacts.csv
2e833c2a6782 Added csv file to sis exports; improved csv file location in main.cpp
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 23
diff changeset
    35
databasefiles.path = .
2e833c2a6782 Added csv file to sis exports; improved csv file location in main.cpp
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 23
diff changeset
    36
2e833c2a6782 Added csv file to sis exports; improved csv file location in main.cpp
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 23
diff changeset
    37
DEPLOYMENT += databasefiles
2e833c2a6782 Added csv file to sis exports; improved csv file location in main.cpp
Sebastian Brannstrom <sebastianb@symbian.org>
parents: 23
diff changeset
    38
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    39
symbian {
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    40
    TARGET.UID3 = 0xec200759
25
adbe71832e2b runs on-device now; testing on 5800
John Kern <johnk@symbian.org>
parents: 24
diff changeset
    41
    TARGET.CAPABILITY += ReadUserData WriteUserData
19
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    42
    TARGET.EPOCSTACKSIZE = 0x14000
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    43
    TARGET.EPOCHEAPSIZE = 0x020000 0x800000
e4b6ee329501 WIP: first draft of contact engine
John Kern <johnk@symbian.org>
parents:
diff changeset
    44
}