Skip to content

Commit 1825e7c

Browse files
committed
updating version to include patch
1 parent b6c31bb commit 1825e7c

File tree

5 files changed

+81
-4
lines changed

5 files changed

+81
-4
lines changed

augmentedreality/Examples/CppArExample/CppArExample.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ CONFIG += c++14
2121

2222
TARGET = CppArExample
2323

24-
ARCGIS_RUNTIME_VERSION = 100.15
24+
ARCGIS_RUNTIME_VERSION = 100.15.0
2525
include($$PWD/arcgisruntime.pri)
2626

2727
HEADERS += \

augmentedreality/Examples/QmlArExample/QmlArExample.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CONFIG += c++14
2424

2525
QT += core gui opengl network positioning sensors qml quick
2626

27-
ARCGIS_RUNTIME_VERSION = 100.15
27+
ARCGIS_RUNTIME_VERSION = 100.15.0
2828
include($$PWD/arcgisruntime.pri)
2929

3030
TEMPLATE = app

calcite-qml/demo/calcite_test.pro

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Copyright 2012-2021 Esri
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
mac {
16+
cache()
17+
}
18+
19+
#-------------------------------------------------------------------------------
20+
21+
CONFIG += c++14
22+
23+
# additional modules are pulled in via arcgisruntime.pri
24+
QT += opengl qml quick quickcontrols2
25+
26+
ARCGIS_RUNTIME_VERSION = 100.15.0
27+
include($$PWD/arcgisruntime.pri)
28+
29+
TEMPLATE = app
30+
TARGET = calcite_test
31+
32+
equals(QT_MAJOR_VERSION, 5) {
33+
lessThan(QT_MINOR_VERSION, 15) {
34+
error("$$TARGET requires Qt 5.15.2")
35+
}
36+
equals(QT_MINOR_VERSION, 15) : lessThan(QT_PATCH_VERSION, 2) {
37+
error("$$TARGET requires Qt 5.15.2")
38+
}
39+
}
40+
41+
equals(QT_MAJOR_VERSION, 6) {
42+
error("This version of the ArcGIS Runtime SDK for Qt is incompatible with Qt 6")
43+
}
44+
45+
#-------------------------------------------------------------------------------
46+
47+
SOURCES += \
48+
main.cpp
49+
50+
# Note: this is how we integrate the Calcite theme into the app binary!
51+
# See `README.md` for setup details.
52+
RESOURCES += \
53+
qml/qml.qrc \
54+
Resources/Resources.qrc \
55+
$$absolute_path($$PWD/../Calcite/calcite.qrc)
56+
57+
OTHER_FILES += \
58+
wizard.xml \
59+
wizard.png
60+
61+
#-------------------------------------------------------------------------------
62+
63+
win32 {
64+
include (Win/Win.pri)
65+
}
66+
67+
macx {
68+
include (Mac/Mac.pri)
69+
}
70+
71+
ios {
72+
include (iOS/iOS.pri)
73+
}
74+
75+
android {
76+
include (Android/Android.pri)
77+
}

uitools/examples/cpp_quick/cpp_quick.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ equals(QT_MAJOR_VERSION, 6) {
3939
error("This version of the ArcGIS Runtime SDK for Qt is incompatible with Qt 6")
4040
}
4141

42-
ARCGIS_RUNTIME_VERSION = 100.15
42+
ARCGIS_RUNTIME_VERSION = 100.15.0
4343
include($$PWD/arcgisruntime.pri)
4444
include($$PWD/../../toolkitcpp.pri)
4545

uitools/examples/qml_quick/qml_quick.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CONFIG += c++14
2424
# additional modules are pulled in via arcgisruntime.pri
2525
QT += opengl qml quick
2626

27-
ARCGIS_RUNTIME_VERSION = 100.15
27+
ARCGIS_RUNTIME_VERSION = 100.15.0
2828
include($$PWD/arcgisruntime.pri)
2929
include($$PWD/../../toolkitqml.pri)
3030

0 commit comments

Comments
 (0)