summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-10-27 04:03:31 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-10-27 04:03:31 +0000
commit5fed058707599c2f225dc2288f3d1b6081628419 (patch)
treee2edd164bbdb12a628b73e324e249ad192875526
parent5d7291d197e3c160f2a10ed2c63c720cdba3d31a (diff)
downloadwireshark-5fed058707599c2f225dc2288f3d1b6081628419.tar.gz
fix doxygen generation
svn path=/trunk/; revision=12403
-rw-r--r--doxygen.cfg.in65
-rw-r--r--epan/doxygen.cfg.in2
-rw-r--r--gtk/doxygen.cfg.in2
3 files changed, 67 insertions, 2 deletions
diff --git a/doxygen.cfg.in b/doxygen.cfg.in
new file mode 100644
index 0000000000..4c3c397153
--- /dev/null
+++ b/doxygen.cfg.in
@@ -0,0 +1,65 @@
+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
+# by quotes) that should identify the project.
+
+PROJECT_NAME = Ethereal
+
+# 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 = @VERSION@
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
+# base path where the generated documentation will be put.
+# 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 =
+
+# 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
+# directories like "/usr/src/myproject". Separate the files or directories
+# with spaces.
+
+INPUT = .
+
+# If the value of the INPUT tag contains directories, you can use the
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
+# and *.h) to filter out the source-files in the directories. If left
+# blank the following patterns are tested:
+# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
+# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
+
+FILE_PATTERNS =
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories
+# should be searched for input files as well. Possible values are YES and NO.
+# If left blank NO is used.
+
+RECURSIVE = YES
+
+# 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 =
+
+# 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.
+
+EXCLUDE_SYMLINKS = NO
+
+# If the value of the INPUT tag contains directories, you can use the
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
+# certain files from those directories.
+
+EXCLUDE_PATTERNS =
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
+# be used to specify the file name of the resulting .chm file. You
+# can add a path in front of the file if the result should not be
+# written to the html output directory.
+
+CHM_FILE = ethereal-gtk.chm
+
+@INCLUDE = doxygen_global.cfg
diff --git a/epan/doxygen.cfg.in b/epan/doxygen.cfg.in
index 8bab2e9d24..2ac2b69797 100644
--- a/epan/doxygen.cfg.in
+++ b/epan/doxygen.cfg.in
@@ -55,4 +55,4 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS =
-@INCLUDE = ../doxygen.cfg \ No newline at end of file
+@INCLUDE = ../doxygen_global.cfg \ No newline at end of file
diff --git a/gtk/doxygen.cfg.in b/gtk/doxygen.cfg.in
index 8f240a7ca6..ff0975f319 100644
--- a/gtk/doxygen.cfg.in
+++ b/gtk/doxygen.cfg.in
@@ -62,4 +62,4 @@ EXCLUDE_PATTERNS =
CHM_FILE = ethereal-gtk.chm
-@INCLUDE = ../doxygen.cfg \ No newline at end of file
+@INCLUDE = ../doxygen_global.cfg \ No newline at end of file