Creating a project

You need to create a project to contain your source code and related files. A project has an associated builder that can incrementally compile source files as they are changed.

To create a project:

  1. Select File > New > Project.


    When you create a new project, you are required to specify the project type. This project type will determine the toolchain, data, and tabs that the CDT uses/displays.


  2. Select the type of project to create. For this tutorial, expand the C++ folder and select C++ Project.

    The C++ Project wizard opens. Click here to see an illustration.


    By default, the CDT filters the Toolchain and Project types that currently display in those lists are based on the language support for the C++ Project wizard you selected for this tutorial.


  3. In the Project name field, type HelloWorld.
  4. Leave the Use Default Location option selected.


    Next, you want to select the type of project to create. In the New CDT Project Wizard, you can choose from the following project types:

    By default, the CDT filters the Toolchain and Project types that currently display in those lists based on the language support for the C++ Project wizard you selected for this tutorial.

  5. From the Project types list, expand Executable and select Hello World C++ Example. This project type provides a simple Hello World application in C++, and the makefile is automatically created by the CDT.
  6. Select a required toolchain from the Toolchain list.

    A toolchain is a set of tools (such as a compiler, linker, and assembler) intended to build your project. Additional tools, such as a debugger, can be associated with a toolchain.
    There can be several toolchains available, depending on the compilers installed on your system.

  7. Click Next.
  8. Click Advanced Settings.
  9. Click the Binary Parser tab.


    Click here to see an illustration.


  10. In the Binary Parser list, select PE Windows Parser.
  11. To ensure the accuracy of the C/C++ Projects view and the ability to successfully run and debug your programs, selecting the correct parser is important. After you select the correct parser for your development environment and build your project, you can view the components of the .o file in the C/C++ Projects view. You can also view the contents of the .o file in the C/C++ editor.

  12. Click Finish.
  13. If a message box prompts you to change perspectives, click Yes.

Your new project displays in the C/C++ Projects view, and in the Navigator view. Your project is empty because you have not yet created files for your project. You can now start writing the code for your HelloWorld program.

Tip: You can view and modify the properties of your HelloWorld project by right-clicking on the project in the C/C++ Projects view and clicking Properties.

Next Icon Next: Creating your C++ file

For more information about:

Related concepts
CDT overview
CDT projects
Project file views

Related tasks
Working with C/C++ project files

Related reference
C/C++ Projects view

QNX Copyright Statement