Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7306


Ignore:
Timestamp:
Sep 1, 2010, 12:46:06 AM (14 years ago)
Author:
landauf
Message:

modified doxy.config.in

moved the comments for some defines in OrxonoxConfig.h.in and SpecialConfig.h.in on the same line as the define to avoid problems with Doxygen if the define is disabled by CMake.

Location:
code/branches/doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/doc/api/doxy.config.in

    r7302 r7306  
    424424# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
    425425
    426 SORT_MEMBERS_CTORS_1ST = NO
     426SORT_MEMBERS_CTORS_1ST = YES
    427427
    428428# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
     
    440440# alphabetical list.
    441441
    442 SORT_BY_SCOPE_NAME     = NO
     442SORT_BY_SCOPE_NAME     = YES
    443443
    444444# The GENERATE_TODOLIST tag can be used to enable (YES) or
     
    622622# subdirectory from a directory tree whose root is specified with the INPUT tag.
    623623
    624 EXCLUDE                = @CMAKE_SOURCE_DIR@/src/external/bullet/
     624EXCLUDE                = @CMAKE_SOURCE_DIR@/src/external/bullet/ \
     625                         @CMAKE_SOURCE_DIR@/src/external/cpptcl/ \
     626                         @CMAKE_SOURCE_DIR@/src/libraries/tools/bsp
    625627
    626628# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     
    644646# AClass::ANamespace, ANamespace::*Test
    645647
    646 EXCLUDE_SYMBOLS        =
     648EXCLUDE_SYMBOLS        = orxonox::detail
    647649
    648650# The EXAMPLE_PATH tag can be used to specify one or more files or
  • code/branches/doc/src/OrxonoxConfig.h.in

    r7300 r7306  
    145145 * Options
    146146 *-------------------------------*/
    147 /// Enables expensive (build time) optimisations and disables certain features
    148 #cmakedefine ORXONOX_RELEASE
     147#cmakedefine ORXONOX_RELEASE  ///< Enables expensive (build time) optimisations and disables certain features
    149148
    150149
  • code/branches/doc/src/SpecialConfig.h.in

    r7300 r7306  
    4343#include <boost/preprocessor/stringize.hpp>
    4444
    45 /// Set whether we must suffix "ceguilua/" for the CEGUILua.h include
    46 #cmakedefine CEGUILUA_USE_INTERNAL_LIBRARY
     45#cmakedefine CEGUILUA_USE_INTERNAL_LIBRARY  ///< Set whether we must suffix "ceguilua/" for the CEGUILua.h include
    4746
    48 /// Defined if a precompiled depdency package was used. We then copy all libraries too when installing.
    49 #cmakedefine DEPENDENCY_PACKAGE_ENABLE
     47#cmakedefine DEPENDENCY_PACKAGE_ENABLE      ///< Defined if a precompiled depdency package was used. We then copy all libraries too when installing.
    5048
    51 /// Orxonox either gets installed to the system or just into a folder. The latter uses relative paths.
    52 #cmakedefine INSTALL_COPYABLE
     49#cmakedefine INSTALL_COPYABLE               ///< Orxonox either gets installed to the system or just into a folder. The latter uses relative paths.
    5350
    54 /// Using MSVC or XCode IDE
    55 #cmakedefine CMAKE_CONFIGURATION_TYPES
     51#cmakedefine CMAKE_CONFIGURATION_TYPES      ///< Using MSVC or XCode IDE
    5652
    5753// Handle default ConfigValues
     
    112108} }
    113109
    114 /// Use main() or WinMain()?
    115 #cmakedefine ORXONOX_USE_WINMAIN
     110#cmakedefine ORXONOX_USE_WINMAIN  ///< Using MSVC or XCode IDE
    116111
    117112#endif /* _SpecialConfig_H__ */
Note: See TracChangeset for help on using the changeset viewer.