aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Doxyfile.in
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-04-15 11:06:28 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-04-15 11:06:28 +0100
commit3c412183b2d4a131239275f440d15677cc5649b0 (patch)
tree42784a65d3ad0cc4fb912032ecdf9059aad5eb7a /doc/Doxyfile.in
parent84c93b048ecab7c22291503e68c47b6e3264fbb0 (diff)
Get rid of include directives inside namespace blocks (bug #339).
Diffstat (limited to 'doc/Doxyfile.in')
-rw-r--r--doc/Doxyfile.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in
index f23b8e537..e87c7c2ba 100644
--- a/doc/Doxyfile.in
+++ b/doc/Doxyfile.in
@@ -560,8 +560,7 @@ WARN_LOGFILE =
# with spaces.
INPUT = "${Eigen_SOURCE_DIR}/Eigen" \
- "${Eigen_SOURCE_DIR}/doc" \
- "${Eigen_BINARY_DIR}/doc"
+ "${Eigen_SOURCE_DIR}/doc"
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -584,13 +583,16 @@ FILE_PATTERNS = *
# should be searched for input files as well. Possible values are YES and NO.
# If left blank NO is used.
-RECURSIVE = NO
+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 = "${Eigen_SOURCE_DIR}/Eigen/Eigen2Support"
+EXCLUDE = "${Eigen_SOURCE_DIR}/Eigen/Eigen2Support" \
+ "${Eigen_SOURCE_DIR}/Eigen/src/Eigen2Support" \
+ "${Eigen_SOURCE_DIR}/doc/examples" \
+ "${Eigen_SOURCE_DIR}/doc/snippets"
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded