1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-27 21:24:47 +01:00

Make Android OpenSSL support optional

This commit is contained in:
Martin Tůma 2022-06-04 14:12:54 +02:00
parent c9b06ba3cf
commit c9930a7aa3
2 changed files with 3 additions and 2 deletions

View File

@ -32,7 +32,6 @@ jobs:
with: with:
aqtversion: '==2.1.0' aqtversion: '==2.1.0'
version: '6.3.0' version: '6.3.0'
host: 'linux'
target: 'android' target: 'android'
arch: 'android_armv7' arch: 'android_armv7'
- name: Configure build - name: Configure build

View File

@ -545,7 +545,9 @@ android {
return($$first(vCode)$$first(suffix)) return($$first(vCode)$$first(suffix))
} }
include($$OPENSSL_PATH/openssl.pri) !include($$OPENSSL_PATH/openssl.pri) {
message("OpenSSL not found, building without HTTPS support!")
}
ANDROID_VERSION_NAME = $$VERSION ANDROID_VERSION_NAME = $$VERSION
ANDROID_VERSION_CODE = $$versionCode($$ANDROID_VERSION_NAME) ANDROID_VERSION_CODE = $$versionCode($$ANDROID_VERSION_NAME)