summaryrefslogtreecommitdiff
path: root/doxygen.cfg.in
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-04-26 00:07:42 +0000
committerGerald Combs <gerald@wireshark.org>2013-04-26 00:07:42 +0000
commite6434ae19ec7f731a7e52cf34d4e2ac5cfc53336 (patch)
treec573fa0bed63eb20ff976d398b2326c775ef2804 /doxygen.cfg.in
parentc3d7f57f58bcc7062b9b1bb8cc438e0b57806505 (diff)
downloadwireshark-e6434ae19ec7f731a7e52cf34d4e2ac5cfc53336.tar.gz
Update the main, epan, and ui Doxygen configuration files. Change the
output directory to wsar_html (Wireshark API Reference HTML) to match the Docbook naming convention. In each doxygen.cfg.in move the doxygen_global.cfg to the top of the file so that our local definitions don't get clobbered. Add makefile targets for wsar_html and wsar-zip. svn path=/trunk/; revision=49043
Diffstat (limited to 'doxygen.cfg.in')
-rw-r--r--doxygen.cfg.in18
1 files changed, 12 insertions, 6 deletions
diff --git a/doxygen.cfg.in b/doxygen.cfg.in
index 640b0fdcc1..b453233e90 100644
--- a/doxygen.cfg.in
+++ b/doxygen.cfg.in
@@ -1,10 +1,12 @@
# $Id$
# @configure_input@
+@INCLUDE = doxygen_global.cfg
+
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
-PROJECT_NAME = Wireshark
+PROJECT_NAME = "Wireshark Core"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
@@ -17,7 +19,13 @@ PROJECT_NUMBER = @VERSION@
# 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 =
+OUTPUT_DIRECTORY = wsar_html
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be
+# put in front of it. If left blank `html' will be used as the default path.
+
+HTML_OUTPUT = core
# The INPUT tag can be used to specify the files and/or directories that contain
# documented source files. You may enter file names like "myfile.cpp" or
@@ -39,13 +47,13 @@ FILE_PATTERNS =
# should be searched for input files as well. Possible values are YES and NO.
# If left blank NO is used.
-RECURSIVE = YES
+RECURSIVE = NO
# The EXCLUDE tag can be used to specify files and/or directories that should
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
-EXCLUDE = gtk2.tmp
+EXCLUDE =
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
# that are symbolic links (a Unix filesystem feature) are excluded from the input.
@@ -64,5 +72,3 @@ EXCLUDE_PATTERNS =
# written to the html output directory.
CHM_FILE = wireshark-gtk.chm
-
-@INCLUDE = doxygen_global.cfg