Reputation: 2697
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
Reputation: 154
Navigate to Tools/Options. Select Projects, General tab. Uncheck "Always build project before running".
Upvotes: 12
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