Re: [Doxygen-users] 1.8.6 no longer creates references to pages
Brought to you by:
dimitri
From: Dimitri v. H. <do...@gm...> - 2014-01-08 09:50:54
|
Hi Marcus, Nested comments are allowed now, but only if they are properly terminated, which is not the case in your example. If not then you should escape them like so: file(GLOB SRC_FILES src/\*.c src/\*.cpp)<br/> or use \verbatim..\endverbatim. I've added a warning when such an comment is encountered to make it easier to find such problems. Regards, Dimitri On 08 Jan 2014, at 9:41 , Marcus Stein <mar...@ho...> wrote: > /*! > * \mainpage > * > * \section About Welcome > * > * \li \ref Util_BuildSystemTools > */ > > > /*! > * \page Util Applications + libraries > * > * \li \subpage Util_BuildSystemTools > */ > > > /*! > * \page Util_BuildSystemTools Build System Tools + CMake > * > * \li \subpage Util_BuildSystemTools_CheatSheet > * > */ > > > /*! > * \page Util_BuildSystemTools_CheatSheet CMake Cheat sheet > * > * <table> > * > * <tr> > * <th colspan="2">Defining targets</th> > * </tr> > * <tr> > * <td>building libraries</td> > * <td><tt>file(GLOB SRC_FILES src/*.c src/*.cpp)<br/> > * bst_build_libraries("${SRC_FILES}" "${PROJECT_NAME}" > * "${BST_LIBRARIES_SHARED}")</tt></td> > * </tr> > * </table> > */ |