blob: 12477c4c9fdd9ad2c8a3fd82dff932638dcd9b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
######################################################################
#
# Simple example of how to use the contacts API
#
######################################################################
TEMPLATE = app
TARGET = qtorganizerdocsample
include(../../../../features/basic_examples_setup.pri)
INCLUDEPATH += ../../../../src/global \
../../../../src/organizer \
../../../../src/organizer/details \
../../../../src/organizer/requests \
../../../../src/organizer/items \
../../../../src/organizer/filters
CONFIG += mobility console
MOBILITY = organizer
SOURCES += qtorganizerdocsample.cpp
symbian {
TARGET.EPOCALLOWDLLDATA = 1
MMP_RULES+="EXPORTUNFROZEN"
}
|