Skip to content
Snippets Groups Projects
Select Git revision
  • f5504a3e432fd61144fab7537a89185132b5ad34
  • master default protected
  • arm-aarch-platform
  • arm-platform
  • vjpai-patch-3
  • vjpai-patch-1
  • v1.27.x
  • jtattermusch-patch-2
  • jtattermusch-patch-1
  • update-java-worker-example-in-performance-docs
  • revert-21805-revert-21797-reintroduce_21527
  • revert-21804-tls-credentials-1
  • zhen_cleanup_namecheck
  • revert-21806-revert-21767-revert-21725-revert-21680-cq_ordering
  • vjpai-patch-2
  • revert-21766-tls-credentials-1
  • revert-21640-change_local_tcp_security_level
  • revert-21680-cq_ordering
  • revert-21527-unify_boringssl_deps2
  • revert-20803-grpclb_stabilization
  • fix-kokoro-rvm-key
  • v1.27.0
  • v1.27.0-pre2
  • v1.27.0-pre1
  • v1.26.0
  • v1.26.0-pre1
  • v1.25.0
  • v1.25.0-pre1
  • v1.24.3
  • v1.24.2
  • v1.24.1
  • v1.23.1
  • v1.24.0
  • v1.24.0-pre2
  • v1.24.0-pre1
  • v1.22.1
  • v1.23.0
  • v1.23.0-pre1
  • v1.22.0
  • v1.22.0-pre1
  • v1.21.4
41 results

Doxyfile.c++.internal

Blame
  • Doxyfile.c++.internal 113.71 KiB
    
    
    # Doxyfile 1.8.9.1
    
    # This file describes the settings to be used by the documentation system
    # doxygen (www.doxygen.org) for a project.
    #
    # All text after a double hash (##) is considered a comment and is placed in
    # front of the TAG it is preceding.
    #
    # All text after a single hash (#) is considered a comment and will be ignored.
    # The format is:
    # TAG = value [value, ...]
    # For lists, items can also be appended using:
    # TAG += value [value, ...]
    # Values that contain spaces should be placed between quotes (\" \").
    
    #---------------------------------------------------------------------------
    # Project related configuration options
    #---------------------------------------------------------------------------
    
    # This tag specifies the encoding used for all characters in the config file
    # that follow. The default is UTF-8 which is also the encoding used for all text
    # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
    # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv
    # for the list of possible encodings.
    # The default value is: UTF-8.
    
    DOXYFILE_ENCODING      = UTF-8
    
    # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
    # double-quotes, unless you are using Doxywizard) that should identify the
    # project for which the documentation is generated. This name is used in the
    # title of most generated pages and in a few other places.
    # The default value is: My Project.
    
    PROJECT_NAME           = "GRPC C++"
    
    # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
    # could be handy for archiving the generated documentation or if some version
    # control system is used.
    
    PROJECT_NUMBER         = 1.5.0-dev
    
    # Using the PROJECT_BRIEF tag one can provide an optional one line description
    # for a project that appears at the top of each page and should give viewer a
    # quick idea about the purpose of the project. Keep the description short.
    
    PROJECT_BRIEF          =
    
    # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
    # in the documentation. The maximum height of the logo should not exceed 55
    # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
    # the logo to the output directory.
    
    PROJECT_LOGO           =
    
    # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
    # into which the generated documentation will be written. If a relative path is
    # entered, it will be relative to the location where doxygen was started. If
    # left blank the current directory will be used.
    
    OUTPUT_DIRECTORY       = doc/ref/c++.internal
    
    # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
    # directories (in 2 levels) under the output directory of each output format and
    # will distribute the generated files over these directories. Enabling this
    # option can be useful when feeding doxygen a huge amount of source files, where
    # putting all generated files in the same directory would otherwise causes
    # performance problems for the file system.