Changeset 7306 for code/branches/doc
- Timestamp:
- Sep 1, 2010, 12:46:06 AM (14 years ago)
- Location:
- code/branches/doc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/doc/api/doxy.config.in
r7302 r7306 424 424 # 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. 425 425 426 SORT_MEMBERS_CTORS_1ST = NO426 SORT_MEMBERS_CTORS_1ST = YES 427 427 428 428 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the … … 440 440 # alphabetical list. 441 441 442 SORT_BY_SCOPE_NAME = NO442 SORT_BY_SCOPE_NAME = YES 443 443 444 444 # The GENERATE_TODOLIST tag can be used to enable (YES) or … … 622 622 # subdirectory from a directory tree whose root is specified with the INPUT tag. 623 623 624 EXCLUDE = @CMAKE_SOURCE_DIR@/src/external/bullet/ 624 EXCLUDE = @CMAKE_SOURCE_DIR@/src/external/bullet/ \ 625 @CMAKE_SOURCE_DIR@/src/external/cpptcl/ \ 626 @CMAKE_SOURCE_DIR@/src/libraries/tools/bsp 625 627 626 628 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or … … 644 646 # AClass::ANamespace, ANamespace::*Test 645 647 646 EXCLUDE_SYMBOLS = 648 EXCLUDE_SYMBOLS = orxonox::detail 647 649 648 650 # The EXAMPLE_PATH tag can be used to specify one or more files or -
code/branches/doc/src/OrxonoxConfig.h.in
r7300 r7306 145 145 * Options 146 146 *-------------------------------*/ 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 149 148 150 149 -
code/branches/doc/src/SpecialConfig.h.in
r7300 r7306 43 43 #include <boost/preprocessor/stringize.hpp> 44 44 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 47 46 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. 50 48 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. 53 50 54 /// Using MSVC or XCode IDE 55 #cmakedefine CMAKE_CONFIGURATION_TYPES 51 #cmakedefine CMAKE_CONFIGURATION_TYPES ///< Using MSVC or XCode IDE 56 52 57 53 // Handle default ConfigValues … … 112 108 } } 113 109 114 /// Use main() or WinMain()? 115 #cmakedefine ORXONOX_USE_WINMAIN 110 #cmakedefine ORXONOX_USE_WINMAIN ///< Using MSVC or XCode IDE 116 111 117 112 #endif /* _SpecialConfig_H__ */
Note: See TracChangeset
for help on using the changeset viewer.