使用xcodebuild命令,如果对应的xcode版本是13.2以上,则会有以下提示:
note: Using new build system
note: Planning
note: Build preparation complete
warning: Building targets in manual order is deprecated - check "Parallelize build for command-line builds" in the project editor, or set DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING in any of the targets in the current build to suppress this warning
解决方法
1.直接在工程项目里面添加
添加上该属性key为DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING,value值为YES
DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING = YES;