您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
405B

  1. #!/bin/bash
  2. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  3. brew install cmake
  4. brew install mysql
  5. brew install openssl
  6. cd ..
  7. git clone --depth=50 https://github.com/xia-chu/ZLToolKit.git
  8. cd ZLToolKit
  9. mkdir -p mac_build
  10. rm -rf ./build
  11. ln -s ./mac_build ./build
  12. cd mac_build
  13. cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
  14. make -j4
  15. sudo make install