How do I set up a C++ project in Xcode 4?

Check this out : http://www.youtube.com/watch?v=Ey8LK7P1K94 at 2:30 he creates a C++ project.

Or try this:

  1. Open XCode.
  2. File/New Project…
  3. In the “New Project” Assistant, expand the “Command Line Utility” group.
  4. Select “C++ Tool”
  5. Click “Next”
  6. Give a project name and directory, then click “Finish”.
  7. Press Cmd-Shift-R to open the Console window. Output will appear there.
  8. Click the “Build and Go” toolbar button.

Leave a Comment