Bharathwaaj
Bharathwaaj

Reputation: 2697

Disable qt creator auto build when debug

How to disable qt creator from auto building when trying to debug?

Currently when debug button is clicked, it automatically starts build. I want to disable this and just proceed to debug.

Upvotes: 9

Views: 5850

Answers (2)

Aaron
Aaron

Reputation: 154

Navigate to Tools/Options. Select Projects, General tab. Uncheck "Always build project before running".

Upvotes: 12

Ihor Kaharlichenko
Ihor Kaharlichenko

Reputation: 6260

That is not probably what you really want, since your source code may become out of sync with the binary. That is why this is enforced.

Upvotes: -3

Related Questions