summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-07-30 13:20:35 (GMT)
committerGitHub <noreply@github.com>2019-07-30 13:20:35 (GMT)
commit7a8b3f7410449f4b04d5d3ec3a5e19b9b82e0504 (patch)
treee0be07150c19b61df2e52d65f7c26f3db9181de3 /addon
parentf2668b88997ed3ff84821238b67398b6654e9794 (diff)
parent577e7844a7fd60cfc4e2f0e7b3bff6ba3e368368 (diff)
downloadDoxygen-7a8b3f7410449f4b04d5d3ec3a5e19b9b82e0504.zip
Doxygen-7a8b3f7410449f4b04d5d3ec3a5e19b9b82e0504.tar.gz
Doxygen-7a8b3f7410449f4b04d5d3ec3a5e19b9b82e0504.tar.bz2
Merge pull request #7118 from albert-github/feature/issue_7109
issue #7109 Doxyapp can't use "[source_file | source_dir]" parameter
Diffstat (limited to 'addon')
-rw-r--r--addon/doxyapp/doxyapp.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/addon/doxyapp/doxyapp.cpp b/addon/doxyapp/doxyapp.cpp
index dd092ed..c18f907 100644
--- a/addon/doxyapp/doxyapp.cpp
+++ b/addon/doxyapp/doxyapp.cpp
@@ -261,6 +261,8 @@ int main(int argc,char **argv)
// setup the non-default configuration options
+ checkConfiguration();
+ adjustConfiguration();
// we need a place to put intermediate files
Config_getString(OUTPUT_DIRECTORY)="/tmp/doxygen";
// disable html output
@@ -281,14 +283,13 @@ int main(int argc,char **argv)
// Extract source browse information, needed
// to make doxygen gather the cross reference info
Config_getBool(SOURCE_BROWSER)=TRUE;
+ // In case of a directory take all files on directory and its subdirectories
+ Config_getBool(RECURSIVE)=TRUE;
// set the input
+ Config_getList(INPUT).clear();
Config_getList(INPUT).append(argv[1]);
- // check and finialize the configuration
- checkConfiguration();
- adjustConfiguration();
-
// parse the files
parseInput();