Re: Batch build?
Re: Batch build?
- Subject: Re: Batch build?
- From: Chris Espinosa <email@hidden>
- Date: Mon, 3 Aug 2009 07:27:11 -0700
On Aug 3, 2009, at 12:16 AM, Lennart Thelander wrote: I want to batch build one of my projects. This project has two targets and four build configurations. I want to batch build the two targets for two (of the four) build configurations. I have discovered that creating an Aggregate target, both targets can be built, but only for the active build configuration.
Is there a way to do a batch build the way I want (total of 4 builds)?
This is on Xcode 2.5 on Mac OS X 10.4.11.
As a shell script:
cd /My/Project/Directory/ xcodebuild clean build -target Lite -configuration Debug xcodebuild clean build -target Lite -configuration Release xcodebuild clean build -target Lite -configuration AdHoc xcodebuild clean build -target Lite -configuration AppStore xcodebuild clean build -target Full -configuration Debug xcodebuild clean build -target Full -configuration Release xcodebuild clean build -target Full -configuration AdHoc xcodebuild clean build -target Full -configuration AppStore osascript -e 'say "Builds are all finished!"'
Chris |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Batch build? (From: Lennart Thelander <email@hidden>) |