Tagged Questions

2
votes
1answer
962 views

Adding a framework to XCode 4

of course i did research before posting my question. I looked at How to "add existing frameworks" in Xcode 4? Adding Framework in XCode 4 Adding an OpenGL framework in Xcode 4 XCode 4 ...
1
vote
2answers
102 views

How to include file as resource in Xcode programmatically during build?

I have a file that is created by a script that is run during a build phase. Consequently, the file does not exist until build time. How can I add the file to the app/project so that my code can ...
7
votes
3answers
2k views

Command line compiling an iPhone Application

I would like to find a way to compile and package our iPhone application as part of our automated nightly build. At present we always have to manually kick off a build on a shared Mac that has the ...
1
vote
1answer
546 views

Tutorial or Guide for Scripting XCode Build Phases

I would like to add some files to the Compile Sources build phase using a script in XCode, which pulls from some folder references. I haven't been able to find much documentation so far. Where is ...
0
votes
2answers
143 views

Setting up Xcode 4 'Save for Enterprise or Ad-Hoc Deployment' as a post-build action

I want to automate enterprise deployment as a post-build action which triggers after archiving, a script following these steps: Use 'Distribute...' action in the Organizer for the latest archived ...
9
votes
5answers
3k views

What automated build system do Mac developers use?

my team is currently using buildbot to automate overnight and continuous-integration builds and regression tests. For builds and unit tests, the builder just invokes a script which syncs the sources ...
3
votes
3answers
3k views

Name of Provisioning Profile used to sign an iPhone app?

I wrote a script that uses xcodebuild to generate an AdHoc build of an iPhone application. I would like to edit this script to output the name of the Provisioning Profile used to sign the build. This ...
1
vote
0answers
123 views

Here's how to auto-increment the build number in Xcode

I've seen several people asking how to do this without getting a clear answer so I'm contributing this write up. It's based on a writeup that I saw outside of stackOverflow. I would like to cite that ...
0
votes
0answers
63 views

XCode build phase with rsync not deleting files from bundle

I have two resource folders added as folder references to my XCode project. Following the advice on this question I created a new build phase that copies those folders using the rsync command, so that ...
0
votes
1answer
2k views

To automate xcode 'Build and Archive' [closed]

Possible Duplicate: Xcode “Build and Archive” from command line can anyone please specify me the steps to Automate the xcode 'Build and Archive' option using command line I need ...