Changeset 6388 for code/branches/presentation2/doc
- Timestamp:
- Dec 21, 2009, 1:28:10 PM (15 years ago)
- Location:
- code/branches/presentation2/doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/doc/CMakeLists.txt
r2710 r6388 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/branches/presentation2/doc/api/CMakeLists.txt
r6387 r6388 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 … … 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
Note: See TracChangeset
for help on using the changeset viewer.