diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-12 09:32:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-12 09:32:03 (GMT) |
commit | 7e0aeda8a19448b44750f2530864432c964b0374 (patch) | |
tree | 97a61f449c3cd2b31dba7908cce7881ee2f0da85 /src/config.l | |
parent | b69146af8dce22431fc50dc3fcea6c7fd5fb1063 (diff) | |
download | Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.zip Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.tar.gz Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.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", |