Doxygen fail to generate graphs in Linux

doxygen

Solution

The problem waas on Mint linux doxygen don't install plugins to draw graphs automatically, installing package graphviz solve the problem

sudo apt-get install graphviz -y 

Problem

I just tried to set up my Doxfile to generate graphs but i get: ``` Problems running dot: exit code=127, command='dot', arguments='"/MyProject/extras/doc/target/html/_c_c_blade_8cpp__incl.dot" -Tpng -o "/MyProject/extras/doc/target/html/_c_c_blade_8cpp__incl.png"' finished... *** Doxygen has finished ``` And no graphs are generated. Whats going on?

Original source