ndbd
ndbd

Reputation: 2549

QCreator: how to create debug build configuration

I started a new C++/Qt-Desktop project in QCreator and two build configurations were automatically created:

Somehow I got these build-configurations deleted (either by moving to a new computer, or opening the project on another computer - I don't know).

How to I recreate these two (apprently default) configurations for my specific project?

Upvotes: 0

Views: 101

Answers (2)

Tim Jenßen
Tim Jenßen

Reputation: 903

  1. close your project
  2. remove the .pro.user file
  3. reopen the closed project

Upvotes: 2

  1. Open your project.

  2. Go to the Projects pane.

  3. Select the Build & Run tab.

  4. Select the Build subtab.

  5. In the "Edit build configuration:" line, click Add dropdown, select Build submenu.

  6. Select the Debug or Release configuration in Build Steps->Details.

Upvotes: 1

Related Questions