I made a command line tool as a Cocoa Application in XCode and when I archive it, it generates a .app file that contains the underlying executable file. To actually run it, I need to execute that underlying file which is located at AppName.app/Contents/MacOS/AppName. Is there any way I can have it build just the executable? I don't want to have to create a post build step that copies the executable out of the .app file.
Thanks