mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
15 lines
398 B
Bash
Executable File
15 lines
398 B
Bash
Executable File
#!/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
|
|
sudo make install
|