You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
502 B
Bash
14 lines
502 B
Bash
2 months ago
|
#!/bin/bash
|
||
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||
|
brew install cmake
|
||
|
cd ..
|
||
|
git clone --depth=50 https://github.com/xia-chu/ZLToolKit.git
|
||
|
cd ZLToolKit
|
||
|
mkdir -p android_build
|
||
|
rm -rf ./build
|
||
|
ln -s ./android_build ./build
|
||
|
cd android_build
|
||
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain.cmake -DANDROID_NDK=$ANDROID_NDK_ROOT -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="armeabi" -DANDROID_NATIVE_API_LEVEL=android-9
|
||
|
make -j4
|
||
|
sudo make install
|