example 'meshtastic': fix 32bit SSL

This commit is contained in:
pls.153 2023-08-04 18:23:58 +02:00
parent 05949bc076
commit f58818ba13

View file

@ -76,7 +76,11 @@ android {
# OpenSSL libs not included here, but can be downloaded from:
# https://github.com/KDAB/android_openssl/tree/master/latest
# required for downloading map tiles, please note naming convention for Qt:
SSL_PATH = ../../../platforms/android/lib
32bit {
SSL_PATH = ../../../platforms/android/lib32
} else {
SSL_PATH = ../../../platforms/android/lib
}
ANDROID_EXTRA_LIBS += $$SSL_PATH/libcrypto_1_1.so $$SSL_PATH/libssl_1_1.so
32bit {