diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-12 09:32:03 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-12 09:32:03 (GMT) |
commit | 3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (patch) | |
tree | 97a61f449c3cd2b31dba7908cce7881ee2f0da85 /src/config.l | |
parent | 535ddc3bb7b6a6d4b50855a06838c11b84a9f3fd (diff) | |
download | Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.zip Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.gz Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.bz2 |
Release-1.3
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/config.l b/src/config.l index b569d5d..184763d 100644 --- a/src/config.l +++ b/src/config.l @@ -2371,8 +2371,21 @@ void Config::create() //----------------------------------------------------------------------------------------------- cl = addList( "TAGFILES", - "The TAGFILES tag can be used to specify one or more tagfiles. \n" - ); + "The TAGFILES option can be used to specify one or more tagfiles. \n" + "Optionally an initial location of the external documentation \n" + "can be added for each tagfile. The format of a tag file without \n" + "this location is as follows: \n" + " TAGFILES = file1 file2 ... \n" + "Adding location for the tag files is done as follows: \n" + " TAGFILES = file1=loc1 \"file2 = loc2\" ... \n" + "where \"loc1\" and \"loc2\" can be relative or absolute paths or \n" + "URLs. If a location is present for each tag, the installdox tool \n" + "does not have to be run to correct the links.\n" + "Note that each tag file must have a unique name\n" + "(where the name does NOT include the path)\n" + "If a tag file is not located in the directory in which doxygen \n" + "is run, you must also specify the path to the tagfile here. \n" + ); cl->setWidgetType(ConfigList::File); cs = addString( "GENERATE_TAGFILE", |