Fix dependency resolution for Qt of version < 5.13.0

lessThan(5.12.10, 5.12.4) returns true
This commit is contained in:
Konstantin Ritt
2021-01-26 10:08:32 +02:00
committed by BogDan Vatra
parent b47b98cc35
commit eb8c415bfb
+1 -1
View File
@@ -2,7 +2,7 @@
CONFIG(release, debug|release): SSL_PATH = $$PWD
else: SSL_PATH = $$PWD/no-asm
if (lessThan(QT_VERSION, 5.12.4)) {
if (!versionAtLeast(QT_VERSION, 5.12.4)) {
contains(ANDROID_TARGET_ARCH, armeabi-v7a) {
ANDROID_EXTRA_LIBS += \
$$SSL_PATH/Qt-5.12.3/arm/libcrypto.so \