In my configuration file in the INPUT tag I added one directory. Inside that iostream
is there without any extension. After running the configuration file I'm not getting information related to iostream
. I want to know how to add the files without extension in doxygen configuration file.
How to add files without extension in doxygen configuration file(e.g iostream library)?
647 views Asked by Mulsa Prathap At
1
I created a small test example (contents is not that relevant for this test), file
stdio
:From the documentation (https://www.doxygen.nl/manual/config.html#cfg_extension_mapping):
Here we see that the possibility for
no_extension
and with the following setting we get the requested information:and I do see the
stdio
information.Edit In case doesn't want to add all files one by one one hast to add
*
toFILE_PATTERNS
.