Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

build_for_ios.sh 372B

il y a 10 mois
12345678910111213
  1. #!/bin/bash
  2. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  3. brew install cmake
  4. cd ..
  5. git clone --depth=50 https://github.com/xia-chu/ZLToolKit.git
  6. cd ZLToolKit
  7. mkdir -p ios_build
  8. rm -rf ./build
  9. ln -s ./ios_build ./build
  10. cd ios_build
  11. cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.cmake -DIOS_PLATFORM=OS
  12. make -j4
  13. sudo make install