forked from sbrown89/libzbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibzbar-android.pri
executable file
·55 lines (40 loc) · 1.02 KB
/
libzbar-android.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_EXTRA_LIBS += \
$$PWD/arm32/libzbar.so
LIBS += \
$$PWD/arm32/libzbar.so
INCLUDEPATH += \
$$PWD/arm32/include
DEPENDPATH += \
$$PWD/arm32/include
}
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
ANDROID_EXTRA_LIBS += \
$$PWD/arm64/libzbar.so
LIBS += \
$$PWD/arm64/libzbar.so
INCLUDEPATH += \
$$PWD/arm64/include
DEPENDPATH += \
$$PWD/arm64/include
}
contains(ANDROID_TARGET_ARCH,x86) {
ANDROID_EXTRA_LIBS += \
$$PWD/x86/libzbar.so
LIBS += \
$$PWD/x86/libzbar.so
INCLUDEPATH += \
$$PWD/x86/include
DEPENDPATH += \
$$PWD/x86/include
}
contains(ANDROID_TARGET_ARCH,x86_64) {
ANDROID_EXTRA_LIBS += \
$$PWD/x86_64/libzbar.so
LIBS += \
$$PWD/x86_64/libzbar.so
INCLUDEPATH += \
$$PWD/x86_64/include
DEPENDPATH += \
$$PWD/x86_64/include
}