forked from KDAB/android_openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenssl.pri
executable file
·39 lines (32 loc) · 852 Bytes
/
openssl.pri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_EXTRA_LIBS += \
$$PWD/arm/libcrypto.so \
$$PWD/arm/libssl.so
LIBS += \
$$PWD/arm/libcrypto.so \
$$PWD/arm/libssl.so
}
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
ANDROID_EXTRA_LIBS += \
$$PWD/arm64/libcrypto.so \
$$PWD/arm64/libssl.so
LIBS += \
$$PWD/arm64/libcrypto.so \
$$PWD/arm64/libssl.so
}
contains(ANDROID_TARGET_ARCH,x86) {
ANDROID_EXTRA_LIBS += \
$$PWD/x86/libcrypto.so \
$$PWD/x86/libssl.so
LIBS += \
$$PWD/x86/libcrypto.so \
$$PWD/x86/libssl.so
}
contains(ANDROID_TARGET_ARCH,x86_64) {
ANDROID_EXTRA_LIBS += \
$$PWD/x86_64/libcrypto.so \
$$PWD/x86_64/libssl.so
LIBS += \
$$PWD/x86_64/libcrypto.so \
$$PWD/x86_64/libssl.so
}