Reputation: 87
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
Reputation: 27611
Under "Projects"
Select the "Build And Run" tab
This contains the "Build Steps" section, which allows you to "Add Build Step"
Upvotes: 1