Reputation: 14605
My Xcode 4 project is not actually building the .app bundle that it is supposed to when it finishes building. What are some reasons why this might be happening? The build process is not giving any errors, but it simply isn't giving me an app bundle which I can execute. What might be causing this?
Upvotes: 1
Views: 489
Reputation: 25665
The build output directory changed in xcode4. Open the Organizer (projects tab):
The built .app is located in the Derived Data directory, in this case:
~/Library/Developer/Xcode/DerivedData/GKTapper-dbndueflsmkgokewelsloryzthni
Upvotes: 1