Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • lima_internal_multi
  • master
  • release_3_5_19
  • release_3_5_18
  • release_3_5_17
  • release_3_5_16
  • release_3_5_15
  • bad_release_3_5_15
  • release_3_5_14
  • release_3_5_13
  • release_3_5_12
  • release_3_5_11
  • release_3_5_10
  • release_3_5_9
  • release_3_5_8
  • release_3_5_7
  • release_3_5_6
  • release_3_5_5
  • release_3_5_4
  • release_3_5_3
  • release_3_5_2
  • release_3_5_1
23 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Doxyfile 32.05 KiB
    # Doxyfile 1.2.10
    
    # This file describes the settings to be used by the documentation system
    # doxygen (www.doxygen.org) for a project
    #
    # All text after a 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 (" ")
    
    #---------------------------------------------------------------------------
    # General configuration options
    #---------------------------------------------------------------------------
    
    # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
    # by quotes) that should identify the project.
    
    PROJECT_NAME           = "Acquire_Waveform_Lecroy_Prj"
    
    # 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         = 
    
    # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
    # base path where the generated documentation will be put. 
    # 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       =	D:\Temp\AcquireWaveformLecroy\src/doc_html
    
    # The OUTPUT_LANGUAGE tag is used to specify the language in which all 
    # documentation generated by doxygen is written. Doxygen will use this 
    # information to generate all constant output in the proper language. 
    # The default language is English, other supported languages are: 
    # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, 
    # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, 
    # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish.
    
    OUTPUT_LANGUAGE        = English
    
    # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
    # documentation are documented, even if no documentation was available. 
    # Private class members and static file members will be hidden unless 
    # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
    
    EXTRACT_ALL            = YES
    
    # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
    # will be included in the documentation.
    
    EXTRACT_PRIVATE        = NO
    
    # If the EXTRACT_STATIC tag is set to YES all static members of a file 
    # will be included in the documentation.
    
    EXTRACT_STATIC         = YES
    
    # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
    # undocumented members of documented classes, files or namespaces. 
    # If set to NO (the default) these members will be included in the 
    # various overviews, but no documentation section is generated. 
    # This option has no effect if EXTRACT_ALL is enabled.
    
    HIDE_UNDOC_MEMBERS     = NO
    
    # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all