forked from Esri/geomessage-simulator-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVehicleCommander.pro
114 lines (99 loc) · 4.08 KB
/
VehicleCommander.pro
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
QMAKE_TARGET_COMPANY = Esri, Inc.
QMAKE_TARGET_PRODUCT = ArcGIS Runtime for Qt
QMAKE_TARGET_DESCRIPTION = Sample application using ArcGIS Runtime for Qt development.
QMAKE_TARGET_COPYRIGHT = Copyright 2010-2013 Esri Inc.
QT += opengl xml network declarative
TEMPLATE = app
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
}
# Important: requires file: $qtsdk\mkspecs\features\esri_runtime_qt_10_2_2.prf
# See ArcGIS Runtime Qt SDK documentation for more information
CONFIG += esri_runtime_qt_10_2_2
CONFIG += debug_and_release
CONFIG(debug, debug|release){
TARGET = VehicleCommanderd
DESTDIR = $$OUT_PWD/debug
}
else{
TARGET = VehicleCommander
DESTDIR = $$OUT_PWD/release
}
# This copies any deployment files, but requires you to add an additional build step
# To do this: Projects | Build Settings tab | Build Steps click on Add Build Step
# | Choose Make from the Add menu | Add "install" as Make arguments
DeployFiles.path = $$DESTDIR
DeployFiles.files += Resources/gpks/FastVisibilityByDistance.gpk
INSTALLS += DeployFiles
win32:DEFINES += WINDOWS
win32:CONFIG += \
embed_manifest_exe
SOURCES += main.cpp\
GPSSimulator.cpp \
MapController.cpp \
MainView.cpp \
AppConfigDialog.cpp \
DictionaryImageProvider.cpp \
SearchController.cpp \
simplegraphicoverlay.cpp \
Geomessage.cpp
HEADERS += GPSSimulator.h \
MapController.h \
MainView.h \
AppConfigDialog.h \
DictionaryImageProvider.h \
SearchController.h \
simplegraphicoverlay.h \
Geomessage.h
RESOURCES += MainViewResources.qrc
FORMS += \
AppConfigDialog.ui
OTHER_FILES += \
Resources/ArcGISRuntimeLicense.txt \
Resources/qml/MainOverlay.qml \
Resources/qml/CompositeControls/StatusBar.qml \
Resources/qml/CompositeControls/NumberPad.qml \
Resources/qml/CompositeControls/NavigationControl2.qml \
Resources/qml/CompositeControls/NavigationControl.qml \
Resources/qml/CompositeControls/ChemLightBar.qml \
Resources/qml/Controls/StackObject.js \
Resources/qml/Controls/ToggleButton.qml \
Resources/qml/Controls/Stack.qml \
Resources/qml/Controls/ScrollButton.qml \
Resources/qml/Controls/PushButton.qml \
Resources/qml/Controls/Panel.qml \
Resources/qml/Controls/MultiDelegate.qml \
Resources/qml/Controls/ModelObject.qml \
Resources/qml/Controls/Menu.qml \
Resources/qml/Controls/ClassificationBar.qml \
Resources/qml/PanelContainers/SpotReport.qml \
Resources/qml/PanelContainers/Search.qml \
Resources/qml/PanelContainers/Reports.qml \
Resources/qml/PanelContainers/MainMenu.qml \
Resources/qml/PanelContainers/Keywords.qml \
Resources/qml/PanelContainers/EquipmentSearch.qml \
Resources/qml/PanelContainers/Browse.qml \
Resources/qml/Panels/MainMenu/ReportsPanel.qml \
Resources/qml/Panels/MainMenu/OverlaysPanel.qml \
Resources/qml/Panels/MainMenu/OptionsPanel.qml \
Resources/qml/Panels/MainMenu/ObservationsPanel.qml \
Resources/qml/Panels/MainMenu/MainPanel.qml \
Resources/qml/Panels/MainMenu/BuddiesPanel.qml \
Resources/qml/Panels/Search/TextSearchPanel.qml \
Resources/qml/Panels/Search/SearchPanel.qml \
Resources/qml/Panels/Search/ResultsPanel.qml \
Resources/qml/Panels/Search/RecentPanel.qml \
Resources/qml/Panels/Search/KeywordsPanel.qml \
Resources/qml/Panels/Search/CategoryPanel.qml \
Resources/qml/Panels/Search/BrowsePanel.qml \
Resources/qml/Panels/Search/AffiliationPanel.qml \
Resources/qml/Panels/Search/AddKeywordsPanel.qml \
Resources/qml/Panels/SpotReport/UnitPanel.qml \
Resources/qml/Panels/SpotReport/TimePanel.qml \
Resources/qml/Panels/SpotReport/SpotReportPanel.qml \
Resources/qml/Panels/SpotReport/SizePanel.qml \
Resources/qml/Panels/SpotReport/LocationPanel.qml \
Resources/qml/Panels/SpotReport/EquipmentPanel.qml \
Resources/qml/Panels/Identify/IdentifyResultsPanel.qml \
Resources/qml/Panels/SpotReport/ActivityPanel.qml \
Resources/qml/Panels/MainMenu/VisibilityPanel.qml