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

57,039

Solution 1

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.

Solution 2

If you click around in the Mac OS part of New Project, there are a couple of options that I can see with a brief glance. Under Framework & Library there is an STL C++ Library you can access, and then under System Plug-in there's a barebones c++ plug-in you can use.

Is that what you mean, or am I misinterpreting the question?

Share:
57,039
mrswmmr
Author by

mrswmmr

Updated on July 09, 2022

Comments

  • mrswmmr
    mrswmmr almost 2 years

    This probably has a really obvious answer, but I can't seem to find it. I am trying to use Xcode 4 to program with C++, and I want to create a project, build, and run it through Xcode 4 like I do for other languages. My problem is that I can't find the right type of project to do this.

  • Ed S.
    Ed S. almost 13 years
    9. Spend 20 minutes or more figuring out why a brand new project won't build in xcode. I hate xcode...
  • mrswmmr
    mrswmmr almost 13 years
    That's what I had...and it wouldn't run my project. The command line tool does run it now though.
  • User
    User over 11 years
    Worked perfectly, 2 minutes! ;)
  • Juan Zamora
    Juan Zamora almost 10 years
    xcode is simply the best IDE for mac. Netbeans is cool, but has bugs with gdb debugger, it get stuck... and that sucks.