You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
macrumors 6502a
Original poster
Just wondering.
If I have a simple C++ Application completed, how to I compile it to run as its own app???
transform it from an Xcode project file to a standalone app? Thanks..

macrumors 6502a
Original poster
Every time you build in XCode is has been building a "standalone" app in order to run it. It's been build it into a derived data directory.
To find the derived data directory.
- Window | Organizer
- Projects tab
- Select your project on the left
- You'll see the Derived Data path
- Click the arrow to open the Derived Data path in Finder
- Go into Build/Products/Debug or Build/Products/Release
You can also have XCode export an archive of your program.
- Change to a release scheme
- Product | Archive
- Window | Organizer
- Archives tab
- Select your project on the left
- Select the latest release version in the archive
- Share
- Application
- Save the Application somewhere
macrumors 6502a
Original poster