diff options
author | David Robillard <d@drobilla.net> | 2018-06-16 10:26:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-27 13:13:59 +0100 |
commit | e474fe8922faa875b7e8695a2f7a87d36799eacc (patch) | |
tree | fa298070f1cd6c55de105cc260007727de968506 /doc/reference.doxygen.in | |
parent | 51f917f8a5179a0e16b32a7f478b4245ea7f2505 (diff) | |
download | serd-e474fe8922faa875b7e8695a2f7a87d36799eacc.tar.gz serd-e474fe8922faa875b7e8695a2f7a87d36799eacc.tar.bz2 serd-e474fe8922faa875b7e8695a2f7a87d36799eacc.zip |
WIP: Add C++ bindings
Diffstat (limited to 'doc/reference.doxygen.in')
-rw-r--r-- | doc/reference.doxygen.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in index a30e5b8a..28c2f8e0 100644 --- a/doc/reference.doxygen.in +++ b/doc/reference.doxygen.in @@ -521,7 +521,7 @@ CASE_SENSE_NAMES = YES # scope will be hidden. # The default value is: NO. -HIDE_SCOPE_NAMES = NO +HIDE_SCOPE_NAMES = YES # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to @@ -670,7 +670,7 @@ SHOW_FILES = NO # Folder Tree View (if specified). # The default value is: YES. -SHOW_NAMESPACES = NO +SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from @@ -782,6 +782,7 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = @SERD_SRCDIR@/serd/serd.h \ + @SERD_SRCDIR@/serd/serd.hpp \ @SERD_SRCDIR@/doc/mainpage.md # This tag can be used to specify the character encoding of the source files @@ -807,7 +808,7 @@ INPUT_ENCODING = UTF-8 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. -FILE_PATTERNS = +FILE_PATTERNS = *.h *.hpp # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. @@ -849,7 +850,7 @@ EXCLUDE_PATTERNS = # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* -EXCLUDE_SYMBOLS = +EXCLUDE_SYMBOLS = detail # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include @@ -1143,7 +1144,7 @@ HTML_EXTRA_FILES = # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_HUE = 160 +HTML_COLORSTYLE_HUE = 120 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A @@ -1151,7 +1152,7 @@ HTML_COLORSTYLE_HUE = 160 # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_SAT = 100 +HTML_COLORSTYLE_SAT = 32 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 |