Where is the Xcode Console App Build Go?

Where is the build output for a console application? I can start the application from Xcode, but I want to try to launch it from the console.

+4
source share
2 answers

If you right-click on target in the "products" folder, you need to provide a context menu. Select "Show in Finder."

target 'application is the application you plan to create. As you can see, when you right-click on it, the option "Show in Finder" is displayed

enter image description here

+3
source

Open the project. In the project directory, select the project navigator. It should display some folders for your source files, as well as two at the end called "Frames" and "Products." Double-click the Products folder to expand it. There should be an entry called foo.app. Where foo is the name of your project. Select an entry for foo.app.

In the attribute editor, look at the top. An entry called "Full Path" appears. It should point to the full path of your application.

For example: /Users/myself/Library/Developer/Xcode/DerivedData/InternationalMountains-gxduphnptzmjqsbmpnqxhxansikq/Build/Products/Debug-iphoneos/InternationalMountains.app

-1
source

All Articles