I have one Xcode project with multiple targets. During development, it is becoming laborious to compile and install each separately.
Is there a way, through scripting or otherwise; that I can automate the build and install to device of multiple targets at once.
Many thanks in advance!
Within a target, you can add other targets as dependencies. So pick one that’s going to be your “master” target, or just create another target to act as a container for all your other targets, add your other targets as dependencies, and build that.