[llvm-commits] CVS: llvm/www/docs/doxygen.cfg
Chris Lattner
lattner at cs.uiuc.edu
Tue Sep 10 17:40:05 PDT 2002
Changes in directory llvm/www/docs:
doxygen.cfg updated: 1.3 -> 1.4
---
Log message:
Fix config file due to directories changing
---
Diffs of the changes:
Index: llvm/www/docs/doxygen.cfg
diff -u llvm/www/docs/doxygen.cfg:1.3 llvm/www/docs/doxygen.cfg:1.4
--- llvm/www/docs/doxygen.cfg:1.3 Thu Aug 22 17:44:22 2002
+++ llvm/www/docs/doxygen.cfg Tue Sep 10 17:39:04 2002
@@ -302,7 +302,7 @@
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = ..
+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
@@ -323,7 +323,7 @@
# 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 = ../test ../include/boost
+EXCLUDE = ../../test ../../include/boost
# 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
@@ -697,7 +697,7 @@
# contain include files that are not input files but should be processed by
# the preprocessor.
-INCLUDE_PATH = ../include
+INCLUDE_PATH = ../../include
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
More information about the llvm-commits
mailing list