mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-02 01:21:33 +08:00
19 lines
360 B
Bash
Executable File
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
|