diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-10 22:39:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-10 22:39:04 +0000 |
commit | 1d3d7114ff6ec223d7d1f6cbba36c2e0a268eb3d (patch) | |
tree | 14b6af136ba91658681e2ff82c8753377c963b1b /docs | |
parent | f2d2d0bb13ce63568362f3aaea68ce55ee040954 (diff) | |
download | external_llvm-1d3d7114ff6ec223d7d1f6cbba36c2e0a268eb3d.zip external_llvm-1d3d7114ff6ec223d7d1f6cbba36c2e0a268eb3d.tar.gz external_llvm-1d3d7114ff6ec223d7d1f6cbba36c2e0a268eb3d.tar.bz2 |
Fix config file due to directories changing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/doxygen.cfg | 6 | ||||
-rw-r--r-- | docs/doxygen.cfg.in | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/doxygen.cfg b/docs/doxygen.cfg index fb2b859..9627f8c 100644 --- a/docs/doxygen.cfg +++ b/docs/doxygen.cfg @@ -302,7 +302,7 @@ WARN_LOGFILE = # 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 @@ RECURSIVE = YES # 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 @@ SEARCH_INCLUDES = YES # 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 diff --git a/docs/doxygen.cfg.in b/docs/doxygen.cfg.in index fb2b859..9627f8c 100644 --- a/docs/doxygen.cfg.in +++ b/docs/doxygen.cfg.in @@ -302,7 +302,7 @@ WARN_LOGFILE = # 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 @@ RECURSIVE = YES # 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 @@ SEARCH_INCLUDES = YES # 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 |