Changeset 6412 for code/branches/pickup2/doc/api
- Timestamp:
- Dec 25, 2009, 1:18:03 PM (15 years ago)
- Location:
- code/branches/pickup2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup2
- Property svn:mergeinfo changed
-
code/branches/pickup2/doc/api/CMakeLists.txt
r5695 r6412 1 # Add a "doc" target with CMake build system. 1 # Add a "doc" target with CMake build system. 2 2 # And configure doxy.config.in to doxy.config 3 3 # 4 4 # target "doc" allows building the documentation with doxygen/dot on WIN32 and Linux 5 # Creates .chm windows help file if MS HTML help workshop 5 # Creates .chm windows help file if MS HTML help workshop 6 6 # (available from http://msdn.microsoft.com/workshop/author/htmlhelp) 7 7 # is installed with its DLLs in PATH. … … 12 12 # must be in path. 13 13 # 14 # Note about Visual Studio Projects: 14 # Note about Visual Studio Projects: 15 15 # MSVS hast its own path environment which may differ from the shell. 16 16 # See "Menu Tools/Options/Projects/VC++ Directories" in VS 7.1 … … 32 32 SET(DOXY_INPUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}) 33 33 SET(DOXY_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}) 34 34 35 35 # we need latex for doxygen because of the formulas 36 36 # Orxonox doesn't … … 45 45 # MESSAGE(STATUS "dvips command DVIPS_CONVERTER not found but usually required.") 46 46 #ENDIF (NOT DVIPS_CONVERTER) 47 47 48 48 IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/doxy.config.in) 49 49 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/doxy.config.in ${CMAKE_CURRENT_BINARY_DIR}/doxy.config @ONLY) … … 54 54 MESSAGE(FATAL_ERROR "Warning: Could not find dox.config.in in the root directory.") 55 55 ENDIF() 56 56 57 57 ADD_CUSTOM_TARGET(doc ${DOXYGEN_EXECUTABLE} ${DOXY_CONFIG}) 58 58 59 59 # create a windows help .chm file using hhc.exe 60 60 # HTMLHelp DLL must be in path! … … 62 62 IF(WIN32) 63 63 FIND_PACKAGE(HTMLHelp) 64 IF(HTML_HELP_COMPILER) 64 IF(HTML_HELP_COMPILER) 65 65 SET(TMP ${DOXY_OUTPUT_DIR}/html/index.hhp) 66 66 STRING(REGEX REPLACE "/" "\\\\" HHP_FILE ${TMP}) … … 70 70 SET_TARGET_PROPERTIES(doc doc_chm PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE) 71 71 ENDIF(HTML_HELP_COMPILER) 72 ENDIF (WIN32) 72 ENDIF (WIN32) 73 73 74 74 -
code/branches/pickup2/doc/api/doxy.config.in
r3196 r6412 140 140 # explicit @brief command for a brief description. 141 141 142 JAVADOC_AUTOBRIEF = NO142 JAVADOC_AUTOBRIEF = YES 143 143 144 144 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen … … 475 475 INPUT = @CMAKE_SOURCE_DIR@/src \ 476 476 @CMAKE_CURRENT_SOURCE_DIR@ \ 477 @CMAKE_BINARY_DIR@/src 477 @CMAKE_BINARY_DIR@/src/OrxonoxConfig.h \ 478 @CMAKE_BINARY_DIR@/src/SpecialConfig.h 478 479 479 480 # If the value of the INPUT tag contains directories, you can use the … … 501 502 # subdirectory from a directory tree whose root is specified with the INPUT tag. 502 503 503 EXCLUDE = @CMAKE_SOURCE_DIR@/src/ bullet/504 EXCLUDE = @CMAKE_SOURCE_DIR@/src/external/bullet/ 504 505 505 506 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or … … 1117 1118 # have no effect if this option is set to NO (the default) 1118 1119 1119 HAVE_DOT = @DOXYGEN_DOT_FOUND@1120 HAVE_DOT = NO 1120 1121 1121 1122 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -
code/branches/pickup2/doc/api/main.dox
- Property svn:eol-style set to native
Note: See TracChangeset
for help on using the changeset viewer.