Changeset 48994 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 9, 2013 11:13:11 AM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Doxyfile
r48991 r48994 26 26 # by quotes) that should identify the project. 27 27 28 PROJECT_NAME = IPRT28 PROJECT_NAME = VirtualBox Qt GUI 29 29 30 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. … … 100 100 # operators of the base classes will not be shown. 101 101 102 INLINE_INHERITED_MEMB = NO102 INLINE_INHERITED_MEMB = YES 103 103 104 104 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full … … 211 211 # of all members will be omitted, etc. 212 212 213 OPTIMIZE_OUTPUT_FOR_C = YES213 OPTIMIZE_OUTPUT_FOR_C = NO 214 214 215 215 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java … … 284 284 # types are typedef'ed and only the typedef is referenced, never the tag name. 285 285 286 TYPEDEF_HIDES_STRUCT = NO286 TYPEDEF_HIDES_STRUCT = YES 287 287 288 288 #--------------------------------------------------------------------------- … … 468 468 # in the documentation. The default is NO. 469 469 470 SHOW_DIRECTORIES = NO470 SHOW_DIRECTORIES = YES 471 471 472 472 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. … … 577 577 # If left blank NO is used. 578 578 579 RECURSIVE = NO579 RECURSIVE = YES 580 580 581 581 # The EXCLUDE tag can be used to specify files and/or directories that should … … 822 822 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 823 823 824 HTML_DYNAMIC_SECTIONS = NO824 HTML_DYNAMIC_SECTIONS = YES 825 825 826 826 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can … … 865 865 # the value YES disables it. 866 866 867 DISABLE_INDEX = YES867 DISABLE_INDEX = NO 868 868 869 869 # This tag can be used to set the number of enum values (range [1..20]) -
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r48858 r48994 1090 1090 1091 1091 1092 # 1093 # Doxygen documentation. 1094 # 1095 QTGUI_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/qtgui 1096 BLDDIRS += $(QTGUI_DOXYFILE_OUTPUT) 1097 OTHER_CLEAN += \ 1098 $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui \ 1099 $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui 1100 1101 # Generate the Doxyfile 1102 $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui: \ 1103 $(PATH_CURRENT)/Doxyfile \ 1104 $(PATH_CURRENT)/Makefile.kmk \ 1105 | $$(dir $$@) 1106 $(RM) -f $@ [email protected] [email protected] 1107 $(CP) -f $< [email protected] 1108 $(APPEND) [email protected] 1109 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(QTGUI_DOXYFILE_OUTPUT)" 1110 $(APPEND) [email protected] "WARN_LOGFILE = $(QTGUI_DOXYFILE_OUTPUT)/errors" 1111 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include ." 1112 $(APPEND) [email protected] "PREDEFINED += $(ARCH_BITS_DEFS)" 1113 $(APPEND) [email protected] 1114 $(APPEND) [email protected] "INPUT = $(dir $<)" 1115 $(APPEND) [email protected] 1116 $(MV) -f [email protected] $@ 1117 1118 # Do the actual job. 1119 $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui: $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui $$(QTGUI_DOXYFILE_INPUT) | $(QTGUI_DOXYFILE_OUTPUT)/ 1120 $(RM) -f $(wildcard $(QTGUI_DOXYFILE_OUTPUT)/html/*) $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui 1121 doxygen $(QTGUI_DOXYFILE_OUTPUT)/Doxyfile.qtgui 1122 $(APPEND) $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui 1123 1124 # aliases 1125 docs.qtgui: $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui 1126 if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS) 1127 docs: $(QTGUI_DOXYFILE_OUTPUT)/docs.qtgui 1128 endif 1129 1130 1131 1092 1132 # Commit the magic. 1093 1133 # (note: before custom rules that make usage of generated variables!).
Note:
See TracChangeset
for help on using the changeset viewer.