summaryrefslogtreecommitdiffstats
path: root/examples/maps/maps.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/maps/maps.pro')
-rw-r--r--examples/maps/maps.pro41
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/maps/maps.pro b/examples/maps/maps.pro
new file mode 100644
index 00000000..46e8665b
--- /dev/null
+++ b/examples/maps/maps.pro
@@ -0,0 +1,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