diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-10 20:17:52 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-21 23:11:00 -0800 |
commit | 420321d7da0abecc4d49c4c0cb8bcd3b22269e1a (patch) | |
tree | 03cafb80c6a40631981ad4dfb34b01b539d9fcb0 /app/app.pro | |
parent | a38332a2e10fb1f02e6c0864367c18a9c634ff6f (diff) |
nagivation: initial import of Qt MapViewer demo
This source code is from the qtlocation repos examples
Some modifications are:
* Building for .wgt package along with geoclue + gps permissions
* Change QML StackView push() methods to QtQuick Control 2 syntax
* Remove menubar and replace with Button elements on main page
Change-Id: I60cbb108b4288a9cda991f4fac0122f0abcbdd7a
Bug-AGL: SPEC-1068
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/app.pro')
-rw-r--r-- | app/app.pro | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app/app.pro b/app/app.pro new file mode 100644 index 0000000..3c0e40d --- /dev/null +++ b/app/app.pro @@ -0,0 +1,42 @@ +TARGET = navigation + +CONFIG += link_pkgconfig +PKGCONFIG += libhomescreen qlibwindowmanager + +QT = qml network quick positioning location quickcontrols2 + +SOURCES += main.cpp + +RESOURCES += \ + mapviewer.qrc + +OTHER_FILES +=mapviewer.qml \ + helper.js \ + map/MapComponent.qml \ + map/Marker.qml \ + map/CircleItem.qml \ + map/RectangleItem.qml \ + map/PolylineItem.qml \ + map/PolygonItem.qml \ + map/ImageItem.qml \ + menus/ItemPopupMenu.qml \ + menus/MainMenu.qml \ + menus/MapPopupMenu.qml \ + menus/MarkerPopupMenu \ + forms/Geocode.qml \ + forms/GeocodeForm.ui.qml\ + forms/Message.qml \ + forms/MessageForm.ui.qml \ + forms/ReverseGeocode.qml \ + forms/ReverseGeocodeForm.ui.qml \ + forms/RouteCoordinate.qml \ + forms/Locale.qml \ + forms/LocaleForm.ui.qml \ + forms/RouteAddress.qml \ + forms/RouteAddressForm.ui.qml \ + forms/RouteCoordinateForm.ui.qml \ + forms/RouteList.qml \ + forms/RouteListDelegate.qml \ + forms/RouteListHeader.qml + +include(app.pri) |