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
372 B
Bash
14 lines
372 B
Bash
12 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 ios_build
|
||
|
rm -rf ./build
|
||
|
ln -s ./ios_build ./build
|
||
|
cd ios_build
|
||
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.cmake -DIOS_PLATFORM=OS
|
||
|
make -j4
|
||
|
sudo make install
|