summaryrefslogtreecommitdiffstats
path: root/examples/maps/maps.pro
blob: 46e8665b6588aa665f8fa5016aaff2a538a8e8d0 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
TEMPLATE = app
TARGET = maps

CONFIG += qt warn_on

QT += network location


RESOURCES += maps.qrc

symbian: {
    TARGET.CAPABILITY = Location \
                        NetworkServices \
                        ReadUserData \
                        WriteUserData
}

HEADERS += \
    mapswidget.h \
    marker.h \
    mainwindow.h \
    searchdialog.h \
    markerdialog.h \
    navigatedialog.h \
    navigator.h

SOURCES += \
    mapswidget.cpp \
    main.cpp \
    marker.cpp \
    mainwindow.cpp \
    searchdialog.cpp \
    markerdialog.cpp \
    navigatedialog.cpp \
    navigator.cpp

#install
target.path = $$[QT_INSTALL_EXAMPLES]/qtlocation/maps
sources.files = $$SOURCES $HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtlocation/maps
INSTALLS += target sources