1 Star 0 Fork 0

raychow-github/aliyun-oss-ios-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
buildOSXFramework.sh 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
超梦 提交于 2018-10-26 10:42 +08:00 . 修改readme介绍
#!/bin/sh
PROJECT_NAME='AliyunOSSSDK'
TARGET_NAME="AliyunOSSSDK OSX"
SRCROOT='.'
# Sets the target folders and the final framework product.
FMK_NAME='AliyunOSSOSX'
# Install dir will be the final output to the framework.
# The following line create it in the root folder of the current project.
INSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework
# Working dir will be deleted after the framework creation.
WRK_DIR=./build
DEVICE_DIR=${WRK_DIR}/Release/${FMK_NAME}.framework
# -configuration ${CONFIGURATION}
# Clean and Building both architectures.
# xcodebuild -configuration "Release" -target "${FMK_NAME}" -sdk iphoneos clean build
# xcodebuild -configuration "Release" -target "${FMK_NAME}" -sdk iphonesimulator clean build
xcodebuild -configuration Release -workspace "${PROJECT_NAME}.xcworkspace" -scheme "${TARGET_NAME}" -sdk macosx clean build SYMROOT="${WRK_DIR}"
# Cleaning the oldest.
if [ -d "${INSTALL_DIR}" ]
then
rm -rf "${INSTALL_DIR}"
fi
mkdir -p ${SRCROOT}/Products
cp -LR "${DEVICE_DIR}" "${INSTALL_DIR}"
rm -r "${WRK_DIR}"
if [ -d "${INSTALL_DIR}/_CodeSignature" ]
then
rm -rf "${INSTALL_DIR}/_CodeSignature"
fi
if [ -f "${INSTALL_DIR}/Info.plist" ]
then
rm "${INSTALL_DIR}/Info.plist"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/raychow-github/aliyun-oss-ios-sdk.git
git@gitee.com:raychow-github/aliyun-oss-ios-sdk.git
raychow-github
aliyun-oss-ios-sdk
aliyun-oss-ios-sdk
master

搜索帮助