Reputation: 13
I am using doxygen and doxywizard for documentation C code.
How to rename the index.html file through configuring doxygen or doxywizard.
Upvotes: 1
Views: 1033
Reputation: 2672
I don't think you can change this from configuration. Main page is always index.html
. And you cannot really rename it afterwards because of all cross-references that point to the main page.
But you can make doxygen output generated files to a specific folder using HTML_OUTPUT
configuration option.
Upvotes: 1