summaryrefslogtreecommitdiff
path: root/examples/maps/maps.pro
blob: 4d229e5be9573bac6c4b02df2b3ac7a1ce134630 (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
TEMPLATE = app
TARGET = maps

CONFIG += qt warn_on

QT += network location


RESOURCES += maps.qrc


# TODO this example needs to be converted to work with Qt5
# when the c++ headers are available.

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

SOURCES += main.cpp

    #mapswidget.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