How to disable generation of html folder in doxygen?

by hal.littel , in category: Third Party Scripts , 8 days ago

How to disable generation of html folder in doxygen?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by addison , 7 days ago

@hal.littel 

To disable the generation of the "html" folder in Doxygen, you can use the following configuration in your Doxyfile:

  1. Open your Doxyfile in a text editor.
  2. Search for the "GENERATE_HTML" option.
  3. Set the value of this option to "NO".


For example:

1
GENERATE_HTML = NO


  1. Save the changes to the file and run Doxygen to generate the documentation without the "html" folder.