25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- brew install cmake
- cd ..
- git clone --depth=50 https://github.com/xia-chu/ZLToolKit.git
- cd ZLToolKit
- mkdir -p ios_build
- rm -rf ./build
- ln -s ./ios_build ./build
- cd ios_build
- cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.cmake -DIOS_PLATFORM=OS
- make -j4
- sudo make install
|