How to set new build system in Xcode 13.3?
Hi everyone,
To enable new build mode in Xcode 13.3, it needs to run following command in terminal:
defaults write com.apple.dt.XCBuild EnableSwiftBuildSystemIntegration 1
If new team member installs Xcode 13.3 and forgets to execute above command he gets build error locally.
Is there a way that above command can be set as a script or flag in Xcode so new engineer doesn't need to worry about executing it in a local terminal?
Note: I tried saving it as Run Script in App target and as a argument in Run scheme. It didn't work.