I mm building xcode workspace in terminal only (xcodebuild - Internal build). It has five schemes. But, at a time I can build only one scheme. I would like to build all the scheme at a time. A single workspace may have more than one scheme.
Asked
Active
Viewed 2,095 times
1 Answers
2
Yes, a single workspace may have multiple schemes but they all must be built independently - it's not possible to build all schemes at a time.
There's an xcodebuild
option: -alltargets
that might be helpful - because schemes are based on targets - however I'm not sure it's useful for this case.

Opal
- 81,889
- 28
- 189
- 210