-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
55 lines (40 loc) · 1.35 KB
/
README
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
aplump – plump Android
Copyright: 2017-2018 Boris Pek <[email protected]>
License: MIT (Expat)
Homepage: https://github.com/sibuserv/aplump
Description:
Collection of scripts for building of some extra libraries for Android.
Dependencies:
bash, realpath, pkg-config, make, autoreconf, automake, cmake, wget, curl, du,
tar (with gzip, bzip2 and xz support), unzip, patch, sed, find, openssl
Settings:
Edit file settings.sh or add file settings.sh.<any-suffix>
Examples of usage:
# Downloading and unpacking of Android NDK and Android SDK:
make android-ndk android-sdk
# Installation of Android NDK and Android SDK to target location:
sudo make install-ndk install-sdk
# Building of extra libraries:
make
make openssl freeglut
# Other options:
make download
make list
make clean
make distclean
make version
make help
# Installation of extra libraries into Android NDK:
sudo make install
Some useful links:
https://github.com/sibuserv/sibuserv
https://github.com/sibuserv/lxe
https://github.com/sibuserv/mxe
Note for qmake based projects:
android: {
# https://doc.qt.io/qt-5/opensslsupport.html
message(ANDROID_PLATFORM_PATH = $$ANDROID_PLATFORM_PATH)
ANDROID_EXTRA_LIBS = \
$$ANDROID_PLATFORM_PATH/lib/libcrypto.so \
$$ANDROID_PLATFORM_PATH/lib/libssl.so
}