ZLMediaKit/build_for_mac.sh
2020-04-06 21:57:14 +08:00

19 lines
360 B
Bash
Executable File

#!/bin/bash
cd ..
git clone --depth=1 https://github.com/xiongziliang/ZLMediaKit.git
cd ZLMediaKit
git submodule init
git submodule update
brew install cmake
brew install openssl
brew install sdl
brew install ffmpeg
mkdir -p mac_build
rm -rf ./build
ln -s ./mac_build build
cd mac_build
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
make -j4