build_for_mac.sh 415 Bytes
Newer Older
xiongziliang committed
1
#!/bin/bash
xiongziliang committed
2 3 4 5 6 7 8 9 10
cd ..
git clone --depth=1 https://github.com/xiongziliang/ZLMediaKit.git
cd ZLMediaKit
git submodule init
git submodule update

brew install cmake
brew install mysql
brew install openssl
xiongziliang committed
11 12 13 14
brew install x264
brew install faac
brew install sdl
brew install ffmpeg
xiongziliang committed
15

16
mkdir -p mac_build
xiongziliang committed
17 18
rm -rf ./build
ln -s ./mac_build build
19
cd mac_build
xiongziliang committed
20 21
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
make -j4