diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-02-11 15:48:41 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-02-11 16:05:45 +0100 |
commit | 14a45eb6e95e89ccfeb2e72a468fc87c067d7ad9 (patch) | |
tree | 9375620edd23c0fa0c1ac539a8a971397fb1a5e2 | |
parent | e2c5b8d850ca5f7c5d770fdc2f7bd5e97b9bf345 (diff) | |
download | sciteco-14a45eb6e95e89ccfeb2e72a468fc87c067d7ad9.tar.gz |
updated Doxyfile: added new source directories; exclude gtkflowbox.c and use SciTECO logo
-rw-r--r-- | doc/Doxyfile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 8709119..2c5e6c9 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -51,7 +51,7 @@ PROJECT_BRIEF = "Text Editor and Corrector" # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo # to the output directory. -PROJECT_LOGO = +PROJECT_LOGO = "@top_srcdir@/ico/sciteco-48.png" # 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 @@ -416,7 +416,7 @@ EXTRACT_PACKAGE = NO # included in the documentation. # The default value is: NO. -EXTRACT_STATIC = NO +EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined # locally in source files will be included in the documentation. If set to NO @@ -743,8 +743,7 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = "@top_srcdir@/src" \ - "@top_builddir@/src" +INPUT = "@top_srcdir@/src" "@top_builddir@/src" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -772,7 +771,7 @@ FILE_PATTERNS = *.cpp \ # be searched for input files as well. # The default value is: NO. -RECURSIVE = NO +RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a @@ -797,7 +796,8 @@ EXCLUDE_SYMLINKS = NO # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* -EXCLUDE_PATTERNS = "@abs_top_builddir@/src/symbols-*.cpp" +EXCLUDE_PATTERNS = "*/symbols-*.cpp" \ + "*/gtkflowbox.[ch]" # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the |