xcodebuild
hpcph
这个作者很懒,什么都没留下…
展开
-
Xcode 中的编译过程以及编译器
转载 2020-06-16 15:10:22 · 475 阅读 · 0 评论 -
自动化打包静态的framework,适配模拟器与真机
我的脚本名设置为 framework_auto_package.sh #!/bin/bash #Upload in 20200528 #使用说明 #1、将framework_auto_package.sh脚本放在工程根目录下 #格式: # ./framework_auto_package.sh 工程名 frameworkName 资源文件名(可不填) #echo $* if [[ $# < 2 ]]; then echo echo 'param < 2' echo原创 2020-05-28 10:30:31 · 253 阅读 · 0 评论 -
Aggregate 自动化打包
# Sets the target folders and the final framework product. # 如果工程名称和Framework的Target名称不一样的话,要自定义FMKNAME # 例如: FMK_NAME = "MyFramework" FMK_NAME=${PROJECT_NAME} # Install dir will be the final output to the framework. # The following line create it in the转载 2020-05-27 17:48:06 · 291 阅读 · 0 评论