Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I run doxywizard?

Tags:

doxygen

I have successfully downloaded and installed doxygen. I am trying to run doxygen but am a little overwhelmed by the configuration file. I see that there is a utility called doxywizard that guides you through the creation of a configuration file. How do I run this wizard? I see that there is a folder called Doxywizard. Do I run one of the files in this folder?

like image 612
bernie2436 Avatar asked Sep 18 '13 00:09

bernie2436


2 Answers

brew install doxygen --with-graphviz --with-qt --with-llvm

EDIT:

The command used to be:

brew install doxygen --with-dot --with-doxywizard --with-libclang

like image 146
orluke Avatar answered Oct 13 '22 00:10

orluke


If you successfully installed doxygen, then you can run Doxywizard by typing doxywizard in terminal. I think, by default it goes into /usr/local/bin/.

EDIT: The official .dmg file for MacOS from the doxygen download page does contain the GUI front-end (doxywizard).

When building from source, according to the doxygen user manual, one must use configure --with-doxywizard to enable doxywizard (also, note requirement for Qt version).

like image 43
lapk Avatar answered Oct 12 '22 23:10

lapk