summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-01 10:52:27 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-01-01 10:52:27 (GMT)
commit3fa5accc93b0ee68ec6bd354cbd0127ae827630f (patch)
tree2077ca098b84cecec7578166f93c51d9ef881c6d /src
parent3867926d7162704c8232af95316dbc14e313f9c3 (diff)
downloadDoxygen-3fa5accc93b0ee68ec6bd354cbd0127ae827630f.zip
Doxygen-3fa5accc93b0ee68ec6bd354cbd0127ae827630f.tar.gz
Doxygen-3fa5accc93b0ee68ec6bd354cbd0127ae827630f.tar.bz2
Renamed CLANG_INCLUDE_INPUT_PATHS to CLANG_ADD_INC_PATHS
The name is too long making the generated config file look ugly.
Diffstat (limited to 'src')
-rw-r--r--src/clangparser.cpp2
-rw-r--r--src/config.xml4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/clangparser.cpp b/src/clangparser.cpp
index fc31639..0cd7339 100644
--- a/src/clangparser.cpp
+++ b/src/clangparser.cpp
@@ -163,7 +163,7 @@ void ClangTUParser::parse()
//printf("ClangTUParser::ClangTUParser(fileName=%s,#filesInSameTU=%d)\n",
// qPrint(fileName),(int)p->filesInSameTU.size());
bool clangAssistedParsing = Config_getBool(CLANG_ASSISTED_PARSING);
- bool clangIncludeInputPaths = Config_getBool(CLANG_INCLUDE_INPUT_PATHS);
+ bool clangIncludeInputPaths = Config_getBool(CLANG_ADD_INC_PATHS);
bool filterSourceFiles = Config_getBool(FILTER_SOURCE_FILES);
const StringVector &includePath = Config_getList(INCLUDE_PATH);
const StringVector &clangOptions = Config_getList(CLANG_OPTIONS);
diff --git a/src/config.xml b/src/config.xml
index 811a3db..c0b846a 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1740,10 +1740,10 @@ to disable this feature.
]]>
</docs>
</option>
- <option type='bool' id='CLANG_INCLUDE_INPUT_PATHS' setting='USE_LIBCLANG' defval='1'>
+ <option type='bool' id='CLANG_ADD_INC_PATHS' setting='USE_LIBCLANG' defval='1'>
<docs>
<![CDATA[
- If clang assisted parsing is enabled and the \c CLANG_INCLUDE_INPUT_PATHS tag
+ If clang assisted parsing is enabled and the \c CLANG_ADD_INC_PATHS tag
is set to \c YES then doxygen will add the directory of each input to the
include path.
]]>