tags:

views:

16

answers:

1

Is is possible to build an iphone project by running an script?

A: 

It most definitely is. Have a look at the xcodebuild command line tool. That'll let you build an xcode project from a script. It takes a few arguments so you can set the build configuration, which target to build, which sdk to use, etc.

Jasarien