diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-03-21 20:24:53 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-03-21 20:24:53 +0100 |
commit | 096b2cd614c521db3dd5b26508ce983e50acc531 (patch) | |
tree | c736d9ed805577049ff085cf2ddddde2750f388b | |
parent | 347cb6477d1394148340ed0f4650a6ecfaaaaf94 (diff) | |
download | mana-096b2cd614c521db3dd5b26508ce983e50acc531.tar.gz mana-096b2cd614c521db3dd5b26508ce983e50acc531.tar.bz2 mana-096b2cd614c521db3dd5b26508ce983e50acc531.tar.xz mana-096b2cd614c521db3dd5b26508ce983e50acc531.zip |
Moved the Doxyfile to fix full paths in generated file list
Running doxygen from a subdirectory caused it to show full absolute paths
in the file list rather than paths relative to the root of the repository.
-rw-r--r-- | Doxyfile (renamed from docs/SOURCE/Doxyfile) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/SOURCE/Doxyfile b/Doxyfile index 5b5f30f9..f0c02a46 100644 --- a/docs/SOURCE/Doxyfile +++ b/Doxyfile @@ -30,7 +30,7 @@ PROJECT_NUMBER = # 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 = docs/SOURCE # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -406,7 +406,7 @@ WARN_FORMAT = "$file:$line: $text" # and error messages should be written. If left blank the output is written # to stderr. -WARN_LOGFILE = "warnings.log" +WARN_LOGFILE = "docs/SOURCE/warnings.log" #--------------------------------------------------------------------------- # configuration options related to the input files @@ -417,7 +417,7 @@ WARN_LOGFILE = "warnings.log" # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = "../../src" +INPUT = "src" # 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 |