X Tutup
# Doxyfile 1.14.0 # 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 (\" \"). # # Note: # # Use Doxygen to compare the used configuration file with the template # configuration file: # doxygen -x [configFile] # Use Doxygen to compare the used configuration file with the template # configuration file without replacing the environment variables or CMake type # replacement variables: # doxygen -x_noenv [configFile] #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = "cpp-strings" PROJECT_NUMBER = "1.0.4" PROJECT_BRIEF = "Pythonic c++ strings" OUTPUT_DIRECTORY = ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the ALWAYS_DETAILED_SEC = YES FULL_PATH_NAMES = NO BUILTIN_STL_SUPPORT = YES TIMESTAMP = DATE ##YES ##NO ##DATETIME ## #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- HIDE_UNDOC_NAMESPACES = NO SORT_BRIEF_DOCS = YES WARN_NO_PARAMDOC = NO #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- INPUT = ./cpp-strings INPUT_ENCODING = UTF-8 USE_MDFILE_AS_MAINPAGE = ./README.md #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- REFERENCED_BY_RELATION = YES REFERENCES_RELATION = YES #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES HTML_OUTPUT = ./documentation HTML_FILE_EXTENSION = .html HTML_COLORSTYLE_HUE = 220 HTML_COLORSTYLE_SAT = 100 HTML_COLORSTYLE_GAMMA = 80 HTML_DYNAMIC_MENUS = YES HTML_DYNAMIC_SECTIONS = NO HTML_CODE_FOLDING = NO ##YES HTML_COPY_CLIPBOARD = YES HTML_INDEX_NUM_ENTRIES = 100 GENERATE_TREEVIEW = YES FULL_SIDEBAR = NO TREEVIEW_WIDTH = 250 EXT_LINKS_IN_WINDOW = NO SEARCHENGINE = YES SERVER_BASED_SEARCH = NO EXTERNAL_SEARCH = NO SORT_GROUP_NAMES = YES SOURCE_BROWSER = NO VERBATIM_HEADERS = NO WARN_IF_INCOMPLETE_DOC = NO WARN_IF_UNDOCUMENTED = NO #--------------------------------------------------------------------------- # Configuration options related to the LaTeX output #--------------------------------------------------------------------------- GENERATE_LATEX = NO
X Tutup