Jacob
Jacob

Reputation: 333

How to change Qt Creator build tool?

Is there anyway to change the build tool Qt Creator uses? Currently, Qt Creator has defaulted to the Qt5 version of qmake. I would like to use the Qt4 version of qmake, or the /usr/bin/make/ option. What are the steps needed to make this happen?

Upvotes: 1

Views: 785

Answers (2)

Sommerwild
Sommerwild

Reputation: 549

Go to Project folder in the left sidebar (under the debug button). Then click 'Manage kits' and create a new kit including the Qt4 make path or change the qmake path of your current path for the qt4 one. The QMake is chosen under the tab QtVersions.

Upvotes: 0

Amol Saindane
Amol Saindane

Reputation: 1598

Go to Tools->Options->Build&Run

Then select Qt Versions tab. You can add qmake there by giving path manually

While building project you can select the respective toolchain as well. That can be done from left panel option project then select the configured toolchain.

Upvotes: 2

Related Questions