Changeset 3171 for code/branches
- Timestamp:
- Jun 14, 2009, 8:31:17 PM (15 years ago)
- Location:
- code/branches/pch/doc/api
- Files:
-
- 2 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/doc/api/CMakeLists.txt
r2710 r3171 50 50 # use (configured) doxy.config from (out of place) BUILD tree: 51 51 SET(DOXY_CONFIG ${CMAKE_CURRENT_BINARY_DIR}/doxy.config) 52 SET(DOXY_LOGFILE ${CMAKE_CURRENT_BINARY_DIR}/doxy.log) 52 53 ELSE() 53 MESSAGE( STATUS"Warning: Could not find dox.config.in in the root directory.")54 MESSAGE(FATAL_ERROR "Warning: Could not find dox.config.in in the root directory.") 54 55 ENDIF() 55 56 … … 64 65 SET(TMP ${DOXY_OUTPUT_DIR}/html/index.hhp) 65 66 STRING(REGEX REPLACE "/" "\\\\" HHP_FILE ${TMP}) 66 ADD_CUSTOM_TARGET( chmdoc${HTML_HELP_COMPILER} ${HHP_FILE})67 ADD_DEPENDENCIES( chmdocdoc)67 ADD_CUSTOM_TARGET(doc_chm ${HTML_HELP_COMPILER} ${HHP_FILE}) 68 ADD_DEPENDENCIES(doc_chm doc) 68 69 # Adding a dependency somehow adds doc target as default build target 69 SET_TARGET_PROPERTIES(doc chmdocPROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE)70 SET_TARGET_PROPERTIES(doc doc_chm PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE) 70 71 ENDIF(HTML_HELP_COMPILER) 71 72 ENDIF (WIN32) … … 78 79 OPTIONAL 79 80 ) 80 # Install command always needs the directory to work81 # Install command always needs the directory 81 82 IF(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/html) 82 83 FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html) -
code/branches/pch/doc/api/doxy.config.in
r2891 r3171 53 53 54 54 OUTPUT_LANGUAGE = English 55 56 # This tag can be used to specify the encoding used in the generated output.57 # The encoding is not always determined by the language that is chosen,58 # but also whether or not the output is meant for Windows or non-Windows users.59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES60 # forces the Windows encoding (this is the default for the Windows binary),61 # whereas setting the tag to NO uses a Unix-style encoding (the default for62 # all platforms other than Windows).63 64 USE_WINDOWS_ENCODING = YES65 55 66 56 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will … … 377 367 # documentation sections, marked by \if sectionname ... \endif. 378 368 379 ENABLED_SECTIONS = 369 ENABLED_SECTIONS = YES 380 370 381 371 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines … … 401 391 SHOW_DIRECTORIES = YES 402 392 393 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. 394 # This will remove the Files entry from the Quick Index and from the Folder 395 # Tree View (if specified). The default is YES. 396 397 SHOW_FILES = YES 398 399 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the 400 # Namespaces page. This will remove the Namespaces entry from the Quick Index 401 # and from the Folder Tree View (if specified). The default is YES. 402 403 SHOW_NAMESPACES = YES 404 403 405 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 404 406 # doxygen should invoke to get the current version for each file (typically from the … … 460 462 # to stderr. 461 463 462 WARN_LOGFILE = @DOXY_ OUTPUT_DIR@/doxy.log464 WARN_LOGFILE = @DOXY_LOGFILE@ 463 465 464 466 #--------------------------------------------------------------------------- … … 472 474 473 475 INPUT = @CMAKE_SOURCE_DIR@/src \ 476 @CMAKE_CURRENT_SOURCE_DIR@ \ 474 477 @CMAKE_BINARY_DIR@/src 475 478 … … 518 521 # the \include command). 519 522 520 EXAMPLE_PATH = @CMAKE_ SOURCE_DIR@/doc/examples/523 EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples/ 521 524 522 525 # If the value of the EXAMPLE_PATH tag contains directories, you can use the … … 542 545 # the \image command). 543 546 544 IMAGE_PATH = @CMAKE_ SOURCE_DIR@/doc/images/547 IMAGE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/images/ 545 548 546 549 … … 1030 1033 # instead of the = operator. 1031 1034 1032 PREDEFINED = 1035 PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS 1033 1036 1034 1037 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then … … 1140 1143 1141 1144 UML_LOOK = NO 1142 # UML_LOOK = YES1143 1145 1144 1146 # If set to YES, the inheritance and collaboration graphs will show the … … 1196 1198 # \dotfile command). 1197 1199 1198 DOTFILE_DIRS = 1200 DOTFILE_DIRS = @CMAKE_CURRENT_SOURCE_DIR@/dot 1199 1201 1200 1202 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the … … 1222 1224 # makes dot run faster, but since only newer versions of dot (>1.8.10) 1223 1225 # support this, this feature is disabled by default. 1224 # JW 1225 # DOT_MULTI_TARGETS = NO 1226 1226 1227 DOT_MULTI_TARGETS = NO 1227 1228 … … 1245 1246 # used. If set to NO the values of all tags below this one will be ignored. 1246 1247 1247 # JW SEARCHENGINE = NO1248 1248 SEARCHENGINE = YES
Note: See TracChangeset
for help on using the changeset viewer.