Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compile application from Xcode for deployment

I feel really stupid for asking a question like this, but I cannot seem to figure it out. I have an application that I wrote in Xcode 4.0.2 that targets Mac OS X. How do I compile this to an application bundle (.app) so I can make it available for people to test?

Thanks in advance.

like image 781
QuantumPhysGuy Avatar asked Apr 18 '11 20:04

QuantumPhysGuy


1 Answers

If you are using Xcode 4, just click the 'Archive' command in the 'Product' menu. It will build your app using the Release build configuration so it's suitable to run on other computer's besides your own.

Once it's done building, it will open up the Organizer window with the Archives item selected and highlight the new archive it just created for your application.

Click the 'Share...' button and select 'Application' in the radio group, then click 'Next' which will bring down a save panel where you can pick a location to actually save the app bundle and do whatever you want with it from there.

like image 154
willbur1984 Avatar answered Sep 30 '22 07:09

willbur1984