Skip to content

Commit 264c3e5

Browse files
Update the version to 100.7 and the minimum Qt version required. (#344)
1 parent e820d5f commit 264c3e5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

samples/CppArExample/CppArExample.pro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ TARGET = CppArExample
2323

2424
equals(QT_MAJOR_VERSION, 5) {
2525
lessThan(QT_MINOR_VERSION, 12) {
26-
error("$$TARGET requires Qt 5.12.0")
26+
error("$$TARGET requires Qt 5.12.6")
2727
}
28-
equals(QT_MINOR_VERSION, 12) : lessThan(QT_PATCH_VERSION, 0) {
29-
error("$$TARGET requires Qt 5.12.0")
28+
equals(QT_MINOR_VERSION, 12) : lessThan(QT_PATCH_VERSION, 6) {
29+
error("$$TARGET requires Qt 5.12.6")
3030
}
3131
}
3232

33-
ARCGIS_RUNTIME_VERSION = 100.6
33+
ARCGIS_RUNTIME_VERSION = 100.7
3434
include($$PWD/arcgisruntime.pri)
3535

3636
HEADERS += \

samples/QmlArExample/QmlArExample.pro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ CONFIG += c++11
2424

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

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

3030
TEMPLATE = app
3131
TARGET = QmlArExample
3232

3333
equals(QT_MAJOR_VERSION, 5) {
3434
lessThan(QT_MINOR_VERSION, 12) {
35-
error("$$TARGET requires Qt 5.12.0")
35+
error("$$TARGET requires Qt 5.12.6")
3636
}
37-
equals(QT_MINOR_VERSION, 12) : lessThan(QT_PATCH_VERSION, 0) {
38-
error("$$TARGET requires Qt 5.12.0")
37+
equals(QT_MINOR_VERSION, 12) : lessThan(QT_PATCH_VERSION, 6) {
38+
error("$$TARGET requires Qt 5.12.6")
3939
}
4040
}
4141

0 commit comments

Comments
 (0)