summaryrefslogtreecommitdiff
path: root/doxygen/Doxyfile.in
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2014-08-21 01:47:30 +0300
committerJari Vetoniemi <mailroxas@gmail.com>2014-08-21 01:47:30 +0300
commitf1bb87a808ff1383a2d27dc2c4a1f8812c470c31 (patch)
tree6669801544e51621c9269e5e89d3ae7a83c73ba8 /doxygen/Doxyfile.in
parent5bd81e8d384e82926a7671527e62aebafed1183f (diff)
parent536eee6d0bf8eb99b6566f7f4fd646b3cd76f532 (diff)
downloadbemenu-f1bb87a808ff1383a2d27dc2c4a1f8812c470c31.tar.gz
bemenu-f1bb87a808ff1383a2d27dc2c4a1f8812c470c31.tar.bz2
bemenu-f1bb87a808ff1383a2d27dc2c4a1f8812c470c31.zip
Merge branch 'develop'
Diffstat (limited to 'doxygen/Doxyfile.in')
-rw-r--r--doxygen/Doxyfile.in24
1 files changed, 13 insertions, 11 deletions
diff --git a/doxygen/Doxyfile.in b/doxygen/Doxyfile.in
index 292260d..b65debf 100644
--- a/doxygen/Doxyfile.in
+++ b/doxygen/Doxyfile.in
@@ -32,19 +32,19 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.
-PROJECT_NAME = @BEMENU_NAME@
+PROJECT_NAME = "@BEMENU_NAME@"
# 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 =
+PROJECT_NUMBER = "@BEMENU_VERSION@"
# 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 = @BEMENU_DESCRIPTION@
+PROJECT_BRIEF = "@BEMENU_DESCRIPTION@"
# With the PROJECT_LOGO tag one can specify an logo or icon that is included in
# the documentation. The maximum height of the logo should not exceed 55 pixels
@@ -526,7 +526,7 @@ INLINE_INFO = YES
# name. If set to NO the members will appear in declaration order.
# The default value is: YES.
-SORT_MEMBER_DOCS = YES
+SORT_MEMBER_DOCS = NO
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
# descriptions of file, namespace and class members alphabetically by member
@@ -743,7 +743,9 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.
-INPUT = @CMAKE_CURRENT_SOURCE_DIR@/../lib @CMAKE_CURRENT_SOURCE_DIR@/../client
+INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/Mainpage.dox" \
+ "@CMAKE_CURRENT_SOURCE_DIR@/../lib" \
+ "@CMAKE_CURRENT_SOURCE_DIR@/../client"
# 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
@@ -763,7 +765,7 @@ INPUT_ENCODING = UTF-8
# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
# *.qsf, *.as and *.js.
-FILE_PATTERNS =
+FILE_PATTERNS = *.h *.dox
# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
@@ -794,7 +796,7 @@ 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 =
+EXCLUDE_PATTERNS = internal.h
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
@@ -1035,7 +1037,7 @@ HTML_FILE_EXTENSION = .html
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.
-HTML_HEADER =
+HTML_HEADER = "@CMAKE_CURRENT_SOURCE_DIR@/doxygen-qmi-style/header.html"
# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
@@ -1045,7 +1047,7 @@ HTML_HEADER =
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.
-HTML_FOOTER =
+HTML_FOOTER = "@CMAKE_CURRENT_SOURCE_DIR@/doxygen-qmi-style/footer.html"
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
@@ -1057,7 +1059,7 @@ HTML_FOOTER =
# obsolete.
# This tag requires that the tag GENERATE_HTML is set to YES.
-HTML_STYLESHEET =
+HTML_STYLESHEET = "@CMAKE_CURRENT_SOURCE_DIR@/doxygen-qmi-style/qmi.css"
# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
# defined cascading style sheet that is included after the standard style sheets
@@ -1352,7 +1354,7 @@ DISABLE_INDEX = NO
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
-GENERATE_TREEVIEW = NO
+GENERATE_TREEVIEW = YES
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# doxygen will group on one line in the generated HTML documentation.