Commit 863353b8 authored by dimitri's avatar dimitri
Browse files

Release-1.2.5-20010211

parent 1b90a1cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.5
DOXYGEN Version 1.2.5-20010211

Please read the installation section of the manual for instructions.

--------
Dimitri van Heesch (04 February 2001)
Dimitri van Heesch (11 February 2001)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.5
DOXYGEN Version 1.2.5-20010211

Please read INSTALL for compilation instructions.

@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (04 February 2001)
Dimitri van Heesch (11 February 2001)
+1 −1
Original line number Diff line number Diff line
1.2.5
1.2.5-20010211
+18 −0
Original line number Diff line number Diff line
@@ -1306,6 +1306,15 @@ void init()
                    "of the generated HTML documentation. \n"
                 );
  addDependency("htmlHelpFlag","generateHtml");
  ConfigBool::add(  "htmlHelpChiFlag",
                    "GENERATE_CHI",
                    "FALSE",
                    "should chi file be generated?",
                    "If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag \n"
                    "controls if a separate .chi index file is generated (YES) or that \n"
                    "it should be included in the master .chm file (NO).\n"
                 );
  addDependency("htmlHelpChiFlag","generateHtml");
  ConfigBool::add(  "noIndexFlag",
                    "DISABLE_INDEX",
                    "FALSE",
@@ -1755,6 +1764,15 @@ void init()
                    "arrows in the dot generated graphs. \n"
                 );
  addDependency("generateLegend","haveDotFlag");
  ConfigBool::add(  "dotCleanUp",
                    "DOT_CLEANUP",
                    "TRUE",
                    "remove intermedia dot files?",
                    "If the DOT_CLEANUP tag is set to YES (the default) Doxygen will \n"
                    "remove the intermedate dot files that are used to generate \n"
                    "the various graphs. \n"
                 );
  addDependency("dotCleanUp","haveDotFlag");

  //-----------------------------------------------------------------------------------------------
  ConfigInfo::add(  "Search","Configuration::addtions related to the search engine   ");
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@
 *
 */

#include <stdlib.h>

#include "qtbc.h"
#include "xml.h"
#include "doxygen.h"
Loading