diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-27 09:33:01 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-27 09:33:01 (GMT) |
commit | 26821747c837df5c015c03382a3ca08a9e113977 (patch) | |
tree | ea39b19a255be0dbe7976409cfd9c2b989019721 /src/doxygen.cpp | |
parent | cdf3cdb1ccf408fde0256cbbb10f09cf9436b5bb (diff) | |
parent | 756d8b203b67f3ab38f7d148794bb94175a064a7 (diff) | |
download | Doxygen-26821747c837df5c015c03382a3ca08a9e113977.zip Doxygen-26821747c837df5c015c03382a3ca08a9e113977.tar.gz Doxygen-26821747c837df5c015c03382a3ca08a9e113977.tar.bz2 |
Merge branch 'run_java_once_3rd_trial' of https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 2d55ae6..f3c09a8 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -104,6 +104,7 @@ #include "context.h" #include "fileparser.h" #include "emoji.h" +#include "plantuml.h" // provided by the generated file resources.cpp extern void initResources(); @@ -11924,6 +11925,13 @@ void generateOutput() g_s.end(); } + if (Config_getBool(PLANTUML_RUN_FAST)) + { + g_s.begin("Running plantuml with JAVA...\n"); + PlantumlManager::instance()->run(); + g_s.end(); + } + if (Config_getBool(HAVE_DOT)) { g_s.begin("Running dot...\n"); |