diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-12 20:31:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-12 20:31:16 (GMT) |
commit | 03f0d843d32a9cc1762ca422a9a2d77643454e21 (patch) | |
tree | 5786f78e51730048fe4578c04a6599aa46e38c10 | |
parent | 492c50410477ec49deae280e3bc414459ee30fab (diff) | |
parent | b8fc0a1a1ee9a7b346632707b944f6e80f441236 (diff) | |
download | Doxygen-03f0d843d32a9cc1762ca422a9a2d77643454e21.zip Doxygen-03f0d843d32a9cc1762ca422a9a2d77643454e21.tar.gz Doxygen-03f0d843d32a9cc1762ca422a9a2d77643454e21.tar.bz2 |
Merge pull request #67 from groleo/master
usage: make -d print dev doxygen options
-rw-r--r-- | src/doxygen.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 9d820cb..65facdf 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -9772,6 +9772,31 @@ static void dumpSymbolMap() } } +// print developer options of doxygen +static void devUsage() +{ + msg("developer parameters:\n"); + msg("-m dump symbol map\n"); + msg("-b output to wizard\n"); + msg("-T activates output generation via Django like template\n"); + msg("-d <level> Enable a debug level, such as:\n"); + msg("\tfindmembers\n"); + msg("\tfunctions\n"); + msg("\tvariables\n"); + msg("\tpreprocessor\n"); + msg("\tclasses\n"); + msg("\tcommentcnv\n"); + msg("\tcommentscan\n"); + msg("\tvalidate\n"); + msg("\tprinttree\n"); + msg("\ttime\n"); + msg("\textcmd\n"); + msg("\tmarkdown\n"); + msg("\tfilteroutput\n"); + msg("\tlex\n"); +} + + //---------------------------------------------------------------------------- // print the usage of doxygen @@ -9799,6 +9824,7 @@ static void usage(const char *name) msg(" RTF: %s -e rtf extensionsFile\n\n",name); msg("If -s is specified the comments of the configuration items in the config file will be omitted.\n"); msg("If configName is omitted `Doxyfile' will be used as a default.\n\n"); + msg("-v print version string\n"); } //---------------------------------------------------------------------------- @@ -10020,6 +10046,7 @@ void readConfiguration(int argc, char **argv) if (!debugLabel) { err("option \"-d\" is missing debug specifier.\n"); + devUsage(); cleanUpDoxygen(); exit(1); } |