I tried to use the \xrefitem command as shown in the doxygen documentation
My Test.h file:
/** @page my_errors My Errors
* @brief Errors page
*
* Errors page contents.
*/
/** @error ERROR 101: in case a file can not be opened.
Check about file system read/write access.*/
#define MY_ERR_CANNOT_OPEN_FILE 101
/** \error ERROR 102: in case a file can not be closed.
Check about file system read/write access. */
#define MY_ERR_CANNOT_CLOSE_FILE 102
and used the ALIAS:
ALIASES += "error=\xrefitem my_errors \"\" \"\""
The Page My Errors
gets created, but the documentation of the two errors does not show up in the output. Do I have to add some settings?
All other preferences are default. Doxygen version is 1.8.16