bernie2436
bernie2436

Reputation: 23921

how do I run doxywizard?

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?

Upvotes: 22

Views: 35476

Answers (3)

MickJC75
MickJC75

Reputation: 39

On Debian 10 I had to:

sudo apt install doxygen-gui

Then I can run doxywizard from the cmd line.

Upvotes: 0

lapk
lapk

Reputation: 3918

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).

Upvotes: 11

orluke
orluke

Reputation: 2051

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

EDIT:

The command used to be:

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

Upvotes: 13

Related Questions