Doxygen: Exclude undocumented files -
i have framework extending. there source folders contain quite lot of files , want document work (especially files come me) using doxygen.
any file documenting contians header:
/** * @file my_file.c * @author stefan f. * @date 28.05.2014 * * @brief file awesome! */
can somehow tell doxygen not include files without such header?
i have set
extract_all = no
files don't have doxygen header not generated still listed in file list.
does know how configure doxygen behavior?
i'm not aware of part of doxygen exactly looking for, however, simplest way achieve aim list files want doxygenning in doxyfile input
line.
input = my_file_1.cpp myfile2.cpp moreofmyfiles/etc.cpp
(beware it's space separated list.)
depending on folder structure may need set recursive = no
if it's own personal project , can name file myname_file.cpp use file_patterns
select files beginning "myname_* - i'm expecting that's not viable set of circumstances.
Comments
Post a Comment