Changeset 6417 for code/trunk/doc
- Timestamp:
- Dec 25, 2009, 10:23:58 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/doc/CMakeLists.txt
r2710 r6417 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 # -
code/trunk/doc/api/CMakeLists.txt
r5695 r6417 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/trunk/doc/api/main.dox
- Property svn:eol-style set to native
Note: See TracChangeset
for help on using the changeset viewer.