Changeset 78


Ignore:
Timestamp:
Jul 25, 2010, 5:15:11 PM (14 years ago)
Author:
Torben Dannhauer
Message:

updated doxyfile to exclude the ENet files from the documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • osgVisual/Doxyfile

    r18 r78  
    1 # Doxyfile 1.5.9
     1# Doxyfile 1.6.3
    22
    33# This file describes the settings to be used by the documentation system
     
    398398SHOW_INCLUDE_FILES     = YES
    399399
     400# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
     401# will list include files with double quotes in the documentation
     402# rather than with sharp brackets.
     403
     404FORCE_LOCAL_INCLUDES   = NO
     405
    400406# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
    401407# is inserted in the documentation for inline members.
     
    416422
    417423SORT_BRIEF_DOCS        = NO
     424
     425# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
     426# will sort the (brief and detailed) documentation of class members so that
     427# constructors and destructors are listed first. If set to NO (the default)
     428# the constructors will appear in the respective orders defined by
     429# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
     430# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
     431# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
     432
     433SORT_MEMBERS_CTORS_1ST = NO
    418434
    419435# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
     
    471487
    472488MAX_INITIALIZER_LINES  = 30
     489
     490# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
     491# at the bottom of the documentation of classes and structs. If set to YES the
     492# list will mention the files that were used to generate the documentation.
     493
     494SHOW_USED_FILES        = YES
    473495
    474496# If the sources in your project are distributed over multiple directories
     
    628650# subdirectory from a directory tree whose root is specified with the INPUT tag.
    629651
    630 EXCLUDE                =
     652EXCLUDE                = "callbacks.c
     653callbacks.h
     654compress.c
     655enet.h
     656host.c
     657list.c
     658list.h
     659packet.c
     660peer.c
     661protocol.c
     662protocol.h
     663time.h
     664types.h
     665unix.c
     666unix.h
     667utility.h
     668win32.c
     669win32.h"
    631670
    632671# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     
    822861
    823862HTML_STYLESHEET        =
     863
     864# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
     865# page will contain the date and time when the page was generated. Setting
     866# this to NO can help when comparing the output of multiple runs.
     867
     868HTML_TIMESTAMP         = YES
    824869
    825870# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
     
    924969# http://doc.trolltech.com/qthelpproject.html#namespace
    925970
    926 QHP_NAMESPACE          =
     971QHP_NAMESPACE          = org.doxygen.Project
    927972
    928973# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
     
    9561001QHG_LOCATION           =
    9571002
     1003# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files 
     1004# will be generated, which together with the HTML files, form an Eclipse help 
     1005# plugin. To install this plugin and make it available under the help contents
     1006# menu in Eclipse, the contents of the directory containing the HTML and XML
     1007# files needs to be copied into the plugins directory of eclipse. The name of
     1008# the directory within the plugins directory should be the same as
     1009# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
     1010# the help appears.
     1011
     1012GENERATE_ECLIPSEHELP   = NO
     1013
     1014# A unique identifier for the eclipse help plugin. When installing the plugin
     1015# the directory name containing the HTML and XML files should also have
     1016# this name.
     1017
     1018ECLIPSE_DOC_ID         = org.doxygen.Project
     1019
    9581020# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
    9591021# top of each HTML page. The value NO (the default) enables the index and
     
    9691031# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
    9701032# structure should be generated to display hierarchical information.
    971 # If the tag value is set to FRAME, a side panel will be generated
     1033# If the tag value is set to YES, a side panel will be generated
    9721034# containing a tree-like index structure (just like the one that
    9731035# is generated for HTML Help). For this to work a browser that supports
    974 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
    975 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
    976 # probably better off using the HTML help feature. Other possible values
    977 # for this tag are: HIERARCHIES, which will generate the Groups, Directories,
    978 # and Class Hierarchy pages using a tree view instead of an ordered list;
    979 # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which
    980 # disables this behavior completely. For backwards compatibility with previous
    981 # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE
    982 # respectively.
    983 
    984 GENERATE_TREEVIEW      = ALL
     1036# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
     1037# Windows users are probably better off using the HTML help feature.
     1038
     1039GENERATE_TREEVIEW      = NO
     1040
     1041# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
     1042# and Class Hierarchy pages using a tree view instead of an ordered list.
     1043
     1044USE_INLINE_TREES       = NO
    9851045
    9861046# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
     
    9981058FORMULA_FONTSIZE       = 10
    9991059
     1060# When the SEARCHENGINE tag is enabled doxygen will generate a search box
     1061# for the HTML output. The underlying search engine uses javascript
     1062# and DHTML and should work on any modern browser. Note that when using
     1063# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
     1064# (GENERATE_DOCSET) there is already a search function so this one should
     1065# typically be disabled. For large projects the javascript based search engine
     1066# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
     1067
     1068SEARCHENGINE           = NO
     1069
     1070# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
     1071# implemented using a PHP enabled web server instead of at the web client
     1072# using Javascript. Doxygen will generate the search PHP script and index
     1073# file to put on the web server. The advantage of the server
     1074# based approach is that it scales better to large projects and allows
     1075# full text search. The disadvances is that it is more difficult to setup
     1076# and does not have live searching capabilities.
     1077
     1078SERVER_BASED_SEARCH    = NO
     1079
    10001080#---------------------------------------------------------------------------
    10011081# configuration options related to the LaTeX output
     
    10141094
    10151095# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
    1016 # invoked. If left blank `latex' will be used as the default command name.
     1096# invoked. If left blank `latex' will be used as the default command name.
     1097# Note that when enabling USE_PDFLATEX this option is only used for
     1098# generating bitmaps for formulas in the HTML output, but not in the
     1099# Makefile that is written to the output directory.
    10171100
    10181101LATEX_CMD_NAME         = latex
     
    12321315
    12331316#---------------------------------------------------------------------------
    1234 # Configuration options related to the preprocessor   
     1317# Configuration options related to the preprocessor
    12351318#---------------------------------------------------------------------------
    12361319
     
    12981381
    12991382#---------------------------------------------------------------------------
    1300 # Configuration::additions related to external references   
     1383# Configuration::additions related to external references
    13011384#---------------------------------------------------------------------------
    13021385
     
    13411424
    13421425#---------------------------------------------------------------------------
    1343 # Configuration options related to the dot tool   
     1426# Configuration options related to the dot tool
    13441427#---------------------------------------------------------------------------
    13451428
     
    15331616
    15341617DOT_CLEANUP            = YES
    1535 
    1536 #---------------------------------------------------------------------------
    1537 # Options related to the search engine
    1538 #---------------------------------------------------------------------------
    1539 
    1540 # The SEARCHENGINE tag specifies whether or not a search engine should be
    1541 # used. If set to NO the values of all tags below this one will be ignored.
    1542 
    1543 SEARCHENGINE           = NO
Note: See TracChangeset for help on using the changeset viewer.