94 lines
2.6 KiB
Prolog
94 lines
2.6 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-03-27T13:14:56
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets svg
|
|
|
|
TARGET = IndoorMap
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += \
|
|
../
|
|
|
|
SOURCES += main.cpp\
|
|
MainWindow.cpp \
|
|
MainController.cpp \
|
|
mapview/tools/ToolSelector.cpp \
|
|
mapview/tools/Tool.cpp \
|
|
mapview/MapView2D.cpp \
|
|
params/ElementParamWidget.cpp \
|
|
params/LayerParamWidget.cpp \
|
|
params/ActionWidget.cpp \
|
|
params/ToolBox.cpp \
|
|
mapview/model/MapModel.cpp \
|
|
tree/MapTreeModel.cpp
|
|
|
|
HEADERS += MainWindow.h \
|
|
mapview/Painter.h \
|
|
mapview/Scaler.h \
|
|
mapview/tools/ToolSelector.h \
|
|
mapview/tools/Tool.h \
|
|
mapview/model/MapLayer.h \
|
|
mapview/model/MapModel.h \
|
|
mapview/tools/ToolMoveMap.h \
|
|
mapview/tools/Tools.h \
|
|
mapview/tools/ToolRuler.h \
|
|
mapview/tools/ToolMapZoom.h \
|
|
tree/MapTreeModel.h \
|
|
MainController.h \
|
|
mapview/tools/ToolMapGrid.h \
|
|
mapview/model/MapLayers.h \
|
|
mapview/MapView2D.h \
|
|
params/ElementParamWidget.h \
|
|
params/LayerParamWidget.h \
|
|
params/ActionWidget.h \
|
|
params/ToolBoxWidget.h \
|
|
UIHelper.h \
|
|
mapview/model/MapModelElement.h \
|
|
mapview/elements/MapViewElementHelper.h \
|
|
mapview/model/IHasAttributes.h \
|
|
mapview/model/IHasMAC.h \
|
|
mapview/model/IHasMaterial.h \
|
|
mapview/model/IHasName.h \
|
|
mapview/model/IHasObstacleType.h \
|
|
mapview/model/IHasPosition3D.h \
|
|
mapview/elements/MV2DElementFloorObstacleLine.h \
|
|
mapview/elements/MV2DElement.h \
|
|
mapview/elements/MV2DElementFloorOutlinePolygon.h \
|
|
mapview/elements/MV2DElementBeacon.h \
|
|
mapview/elements/MV2DElementAccessPoint.h \
|
|
mapview/elements/MV2DElementFloorObstacleCircle.h \
|
|
mapview/model/MMFloorObstacleCircle.h \
|
|
mapview/model/MMFloorObstacleLine.h \
|
|
mapview/model/MMFloorOutlinePolygon.h \
|
|
mapview/model/MMFloor.h \
|
|
mapview/model/MMFloors.h \
|
|
mapview/model/MMFloorObstacles.h \
|
|
mapview/model/MMFloorOutline.h \
|
|
mapview/model/MMRoot.h \
|
|
mapview/model/MMFloorAccessPoint.h \
|
|
mapview/model/MMFloorBeacon.h \
|
|
mapview/model/MMFloorAccessPoints.h \
|
|
mapview/model/MMFloorBeacons.h \
|
|
mapview/model/MMFloorUnderlay.h \
|
|
mapview/model/IHasFile.h \
|
|
mapview/elements/MV2DElementFloorUnderlay.h \
|
|
mapview/model/MMFloorUnderlayImage.h \
|
|
mapview/model/IHasParams.h
|
|
|
|
FORMS += MainWindow.ui
|
|
|
|
SOURCES += \
|
|
/apps/android/workspace/Indoor/lib/tinyxml/tinyxml2.cpp
|
|
|
|
RESOURCES += \
|
|
res.qrc
|
|
|
|
DISTFILES += \
|
|
res/icons/polygon.svg
|
|
|