diff options
Diffstat (limited to 'app/app.pro')
-rw-r--r-- | app/app.pro | 59 |
1 files changed, 21 insertions, 38 deletions
diff --git a/app/app.pro b/app/app.pro index 4eef717..266836a 100644 --- a/app/app.pro +++ b/app/app.pro @@ -1,47 +1,30 @@ TARGET = navigation +QT = quick qml aglextras +PKGCONFIG += qlibhomescreen qlibwindowmanager -CONFIG += link_pkgconfig -PKGCONFIG += libhomescreen qlibwindowmanager +equals(DEFINES, "DESKTOP"){ + QT -= aglextras + PKGCONFIG -= qlibhomescreen qlibwindowmanager +} -QT = qml network quick positioning location quickcontrols2 +QT += positioning +QT += core +CONFIG += c++11 link_pkgconfig -static { - QTPLUGIN += qtvirtualkeyboardplugin - QT += svg -} +HEADERS += \ + markermodel.h \ + guidance_module.h \ + file_operation.h -SOURCES += main.cpp +SOURCES += main.cpp \ + file_operation.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 + navigation.qrc \ + images/images.qrc include(app.pri) + +DISTFILES += + + |