nsejxT nsejxT
nsejxT nsejxT

Reputation: 87

How to request Qt Creator to execute an additional step after build?

I'm experimenting with gprof and Gprof2Dot which gives me a graph, produced by the command

gprof path/to/your/executable | gprof2dot.py | dot -Tpng -o output.png

Development is going on Qt Creator. So came the question: How to request Qt Creator to execute the above command as an additional step after build?

Upvotes: 1

Views: 415

Answers (1)

TheDarkKnight
TheDarkKnight

Reputation: 27611

Under "Projects"

enter image description here

Select the "Build And Run" tab

enter image description here

This contains the "Build Steps" section, which allows you to "Add Build Step" enter image description here

Upvotes: 1

Related Questions