2 Star 4 Fork 1

TouchVG / vgios

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sh 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
rhcad 提交于 2021-11-09 16:18 . Fix for xcode 13
#!/bin/sh
# Type './build.sh' to make iOS libraries.
# Type './build.sh -arch arm64' to make iOS libraries for iOS 64-bit.
# Type './build.sh clean' to remove object files.
if [ ! -f ../vgcore/ios/build.sh ] ; then
git clone http://git.oschina.net/vg/vgcore ../vgcore
fi
if [ ! -f ../SVGKit/SVGKit.podspec ] ; then
git clone https://github.com/SVGKit/SVGKit ../SVGKit
fi
iphoneos15=`xcodebuild -showsdks | grep -i iphoneos15`
iphoneos12=`xcodebuild -showsdks | grep -i iphoneos12`
if [ -n "$iphoneos15" ]; then
xcodebuild -project TouchVG.xcodeproj $1 $2 -sdk iphoneos15.0 -configuration Release -alltargets
else
if [ -n "$iphoneos12" ]; then
xcodebuild -project TouchVG.xcodeproj $1 $2 -sdk iphoneos12.0 -configuration Release -alltargets
fi
fi
mkdir -p output/TouchVG
cp -R build/Release-iphoneos/*.a output
cp -R build/Release-iphoneos/include/TouchVG/*.h output/TouchVG
Objective-C
1
https://gitee.com/vg/vgios.git
git@gitee.com:vg/vgios.git
vg
vgios
vgios
develop

搜索帮助

53164aa7 5694891 3bd8fe86 5694891