mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-26 04:31:37 +08:00
13 lines
379 B
Bash
13 lines
379 B
Bash
|
#!/bin/bash
|
||
|
path=`pwd`
|
||
|
wget https://raw.githubusercontent.com/xiongziliang/ZLToolKit/master/build_for_ios.sh -O toolkit_build.sh
|
||
|
sudo chmod +x ./toolkit_build.sh
|
||
|
./toolkit_build.sh
|
||
|
cd $path
|
||
|
cd ..
|
||
|
git clone --depth=50 https://github.com/xiongziliang/ZLMediaKit.git
|
||
|
cd ZLMediaKit
|
||
|
mkdir -p build
|
||
|
cd build
|
||
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.cmake -DIOS_PLATFORM=OS
|
||
|
make -j4
|