diff options
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 9283238..8df7493 100644 --- a/src/config.l +++ b/src/config.l @@ -2276,6 +2276,16 @@ void Config::create() "syntax of the XML files. \n" ); cs->addDependency("GENERATE_XML"); + cb = addBool( + "XML_PROGRAMLISTING", + "If the XML_PROGRAMLISTING tag is set to YES Doxygen will \n" + "dump the program listings (including syntax highlighting \n" + "and cross-referencing information) to the XML output. Note that \n" + "enabling this will significantly increase the size of the XML output. \n", + TRUE + ); + cb->addDependency("GENERATE_XML"); + //-------------------------------------------------------------------------- addInfo( "DEF","configuration options for the AutoGen Definitions output"); //-------------------------------------------------------------------------- |