Skip to content

Commit e1506e6

Browse files
Remove the Qt version check. (#411)
Also update to C++14, our SDK standard.
1 parent e6aa4a1 commit e1506e6

File tree

2 files changed

+2
-22
lines changed

2 files changed

+2
-22
lines changed

augmentedreality/Examples/CppArExample/CppArExample.pro

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,10 @@
1717
TEMPLATE = app
1818

1919
QT += core gui opengl network positioning sensors qml quick multimedia
20-
CONFIG += c++11
20+
CONFIG += c++14
2121

2222
TARGET = CppArExample
2323

24-
equals(QT_MAJOR_VERSION, 5) {
25-
lessThan(QT_MINOR_VERSION, 12) {
26-
error("$$TARGET requires Qt 5.15.1")
27-
}
28-
equals(QT_MINOR_VERSION, 12) : lessThan(QT_PATCH_VERSION, 6) {
29-
error("$$TARGET requires Qt 5.15.1")
30-
}
31-
}
32-
3324
ARCGIS_RUNTIME_VERSION = 100.11
3425
include($$PWD/arcgisruntime.pri)
3526

augmentedreality/Examples/QmlArExample/QmlArExample.pro

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mac {
2020

2121
#-------------------------------------------------------------------------------
2222

23-
CONFIG += c++11
23+
CONFIG += c++14
2424

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

@@ -30,17 +30,6 @@ include($$PWD/arcgisruntime.pri)
3030
TEMPLATE = app
3131
TARGET = QmlArExample
3232

33-
equals(QT_MAJOR_VERSION, 5) {
34-
lessThan(QT_MINOR_VERSION, 15) {
35-
error("$$TARGET requires Qt 5.15.1")
36-
}
37-
equals(QT_MINOR_VERSION, 15) : lessThan(QT_PATCH_VERSION, 1) {
38-
error("$$TARGET requires Qt 5.15.1")
39-
}
40-
}
41-
42-
#-------------------------------------------------------------------------------
43-
4433
HEADERS += \
4534
AppInfo.h
4635

0 commit comments

Comments
 (0)