| OLD | NEW |
| 1 # Doxyfile 1.4.7 | 1 # Doxyfile 1.4.7 |
| 2 | 2 |
| 3 # Copyright (C) 1997-2007 by Dimitri van Heesch | 3 # Copyright (C) 1997-2007 by Dimitri van Heesch |
| 4 # License: GNU GPLv2+ | 4 # License: GNU GPLv2+ |
| 5 | 5 |
| 6 # This file describes the settings to be used by the documentation system | 6 # This file describes the settings to be used by the documentation system |
| 7 # doxygen (www.doxygen.org) for a project | 7 # doxygen (www.doxygen.org) for a project |
| 8 # | 8 # |
| 9 # All text after a hash (#) is considered a comment and will be ignored | 9 # All text after a hash (#) is considered a comment and will be ignored |
| 10 # The format is: | 10 # The format is: |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 FULL_PATH_NAMES = YES | 112 FULL_PATH_NAMES = YES |
| 113 | 113 |
| 114 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag | 114 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag |
| 115 # can be used to strip a user-defined part of the path. Stripping is | 115 # can be used to strip a user-defined part of the path. Stripping is |
| 116 # only done if one of the specified strings matches the left-hand part of | 116 # only done if one of the specified strings matches the left-hand part of |
| 117 # the path. The tag can be used to show relative paths in the file list. | 117 # the path. The tag can be used to show relative paths in the file list. |
| 118 # If left blank the directory from which doxygen is run is used as the | 118 # If left blank the directory from which doxygen is run is used as the |
| 119 # path to strip. | 119 # path to strip. |
| 120 | 120 |
| 121 STRIP_FROM_PATH = | 121 STRIP_FROM_PATH = @top_srcdir@/src |
| 122 | 122 |
| 123 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of | 123 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of |
| 124 # the path mentioned in the documentation of a class, which tells | 124 # the path mentioned in the documentation of a class, which tells |
| 125 # the reader which header file to include in order to use a class. | 125 # the reader which header file to include in order to use a class. |
| 126 # If left blank only the name of the header file containing the class | 126 # If left blank only the name of the header file containing the class |
| 127 # definition is used. Otherwise one should specify the include paths that | 127 # definition is used. Otherwise one should specify the include paths that |
| 128 # are normally passed to the compiler using the -I flag. | 128 # are normally passed to the compiler using the -I flag. |
| 129 | 129 |
| 130 STRIP_FROM_INC_PATH = | 130 STRIP_FROM_INC_PATH = |
| 131 | 131 |
| (...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1225 DOT_CLEANUP = YES | 1225 DOT_CLEANUP = YES |
| 1226 | 1226 |
| 1227 #--------------------------------------------------------------------------- | 1227 #--------------------------------------------------------------------------- |
| 1228 # Configuration::additions related to the search engine | 1228 # Configuration::additions related to the search engine |
| 1229 #--------------------------------------------------------------------------- | 1229 #--------------------------------------------------------------------------- |
| 1230 | 1230 |
| 1231 # The SEARCHENGINE tag specifies whether or not a search engine should be | 1231 # The SEARCHENGINE tag specifies whether or not a search engine should be |
| 1232 # used. If set to NO the values of all tags below this one will be ignored. | 1232 # used. If set to NO the values of all tags below this one will be ignored. |
| 1233 | 1233 |
| 1234 SEARCHENGINE = NO | 1234 SEARCHENGINE = NO |
| OLD | NEW |