blob: acd0c1fd1e4f0f6a325a9f831b8cff1410369b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
######################################################################
#
# Simple example of how to use the contacts API
#
######################################################################
TEMPLATE = app
TARGET = qtcontactsdocsample
include(../../../../common.pri)
INCLUDEPATH += ../../../../src/contacts \
../../../../src/contacts/requests \
../../../../src/contacts/filters \
../../../../src/contacts/details
DESTDIR = $$QT_MOBILITY_BUILD_TREE/bin/examples
QMAKE_RPATHDIR+=$$OUTPUT_DIR/lib
CONFIG += mobility
MOBILITY = contacts
SOURCES += qtcontactsdocsample.cpp
HEADERS += requestexample.h
|