This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
desktopclient.pro
166 lines (136 loc) · 5.31 KB
/
desktopclient.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
QMAKE_CXXFLAGS += -std=c++11
QMAKE_CXXFLAGS += -Wno-unused-parameter
QMAKE_CXXFLAGS += -Wno-sign-compare
QMAKE_CXXFLAGS += -Wno-unused-local-typedefs
QMAKE_CXXFLAGS += -Wno-deprecated-declarations
CONFIG(debug, debug|release) {
CONF=debug
}
CONFIG(release, debug|release) {
CONF=release
}
OUTDIR = $$PWD/..output/$$CONF
PLATFORM = generic
win32{
PLATFORM = win32
}
TARGET = ilwisclient
DESTDIR = $$PWD/../output/$$PLATFORM$$CONF/bin
include(deployment.pri)
# Add more folders to ship with the application, here
folder_01.source = desktopclient/qml
win32{
folder_01.target = ../../../output/$$PLATFORM$$CONF/bin
}
linux{
folder_01.target = ../../../output/$$PLATFORM$$CONF/bin
}
DEPLOYMENTFOLDERS = folder_01
QT += qml quick sql opengl
BOOST=../external
# Additional import path used to resolve QML modules in Creator's code model
QML_IMPORT_PATH =
# If your application uses the Qt Mobility libraries, uncomment the following
# lines and add the respective components to the MOBILITY variable.
# CONFIG += mobility
# MOBILITY +=
# The .cpp file which was generated for your project. Feel free to hack it.
LIBS += -L$$PWD/../libraries/$$PLATFORM$$CONF/ -lilwiscore
LIBS += -L$$PWD/../libraries/$$PLATFORM$$CONF/ -lilwiscoreui
win32{
PLATFORM = win32
BOOST=../external
SHAREDEXT=dll
PREFIXSHARED=
}
linux{
BOOST=/usr/include
GEOSINCL=/usr/include
GEOSLIB=/usr/lib
SHAREDEXT=so
PREFIXSHARED=lib
INCLUDEPATH += $$GEOSINCL
DEPENDPATH += $$GEOSINCL
LIBS += -L$$GEOSLIB/ -lgeos-3.4.2
}
INCLUDEPATH += $$PWD/core
DEPENDPATH += $$PWD/core
# INCLUDEPATH += $$PWD/../external/geos
# DEPENDPATH += $$PWD/../external/geos
INCLUDEPATH += $$PWD/ilwiscoreui
DEPENDPATH += $$PWD/ilwiscoreui
INCLUDEPATH += core/ilwisobjects \
core/ilwisobjects/geometry \
core/util \
core/ilwisobjects/geometry/geodeticdatum \
core/ilwisobjects/geometry/projection \
core/ilwisobjects/geometry/coordinatesystem \
core/ilwisobjects/geometry/georeference \
core/ilwisobjects/coverage \
core/ilwisobjects/table \
core/ilwisobjects/operation \
core/ilwisobjects/operation/modeller \
core/ilwisobjects/representation \
core/catalog \
core/geos/include \
core/ilwisobjects/domain \
ilwiscoreui \
ilwiscoreui/models \
ilwiscoreui/models/workflow \
core \
$$BOOST
OTHER_FILES += \
desktopclient/qml/panel/PullOver.qml \
desktopclient/qml/panel/CollapsiblePanel.qml \
desktopclient/qml/DesktopClient.qml \
desktopclient/qml/views/DummyList.qml \
desktopclient/qml/panel/FolderSource.qml \
desktopclient/qml/panel/Visualize.qml \
desktopclient/qml/Visualization.qml \
desktopclient/qml/panel/CatalogTable.qml \
desktopclient/qml/panel/CatalogThumbGrid.qml \
desktopclient/qml/Global.js \
desktopclient/qml/workbench/propertyform/NumericDomainProperties.qml \
desktopclient/qml/workbench/propertyform/GeoreferencePart.qml \
desktopclient/qml/datapanel/visualization/RepresentationProperties.qml \
desktopclient/qml/workbench/modeller/ModellerCatagoriesList.qml \
desktopclient/qml/workbench/modeller/ModellerList.qml \
desktopclient/qml/workbench/modeller/ModellerSelection.qml \
desktopclient/qml/datapanel/workflow/AbstractBasicWorkflowDrawObjectqml \
desktopclient/qml/datapanel/workflow/OperationWorkflowDrawObject.qml
# Installation path
# Please do not modify the following two lines. Required for deployment.
qtcAddDeployment()
HEADERS += \
desktopclient/applicationformexpressionparser.h \
desktopclient/ilwistype.h \
desktopclient/keyfilter.h \
desktopclient/workflowmetadataformbuilder.h \
desktopclient/startilwis.h \
core/buildnumber.h
SOURCES += \
desktopclient/applicationformexpressionparser.cpp \
desktopclient/ilwistype.cpp \
desktopclient/main.cpp \
desktopclient/keyfilter.cpp \
desktopclient/workflowmetadataformbuilder.cpp \
desktopclient/startilwis.cpp
DISTFILES += \
desktopclient/qml/datapanel/visualization/Layers.qml \
desktopclient/qml/datapanel/visualization/PropertyEditorsList.qml \
desktopclient/qml/datapanel/visualization/propertyeditors/LayersList.qml \
desktopclient/qml/datapanel/visualization/propertyeditors/VisualAttributeList.qml \
desktopclient/qml/controls/HScrollBar.qml \
desktopclient/qml/workbench/WorkSpaceDataGrid.qml \
desktopclient/qml/datapanel/visualization/MapPanel.qml \
desktopclient/qml/datapanel/visualization/MapPanelButton.qml \
desktopclient/qml/datapanel/visualization/MapPanelButtonBar.qml \
desktopclient/qml/datapanel/ButtonBarTabViewStyle.qml \
desktopclient/qml/datapanel/visualization/propertyeditors/ConvertAttributeDomain.qml \
desktopclient/qml/datapanel/visualization/propertyeditors/LayerOpacity.qml \
desktopclient/qml/datapanel/workflow/AttachmentRectangle.qml \
desktopclient/qml/workbench/creators/PaletteColorList.qml \
desktopclient/qml/workbench/creators/CreateGeorefCorners.qml \
desktopclient/qml/workbench/preferences/Locations.qml \
desktopclient/qml/datapanel/catalog/CatalogActions.qml \
desktopclient/qml/controls/ActionButtonV.qml