After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 646463 - MSCFILE_DIRS doxyfile property does not work for multiple paths
MSCFILE_DIRS doxyfile property does not work for multiple paths
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.7.2
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2011-04-01 17:40 UTC by Aaron
Modified: 2011-08-14 14:05 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Aaron 2011-04-01 17:40:24 UTC
I have tried to place 2 paths in the MSCFILE_DIRS property and it appears only the first path is used.

I have tried both of the following formats in my doxyfile:

MSCFILE_DIRS = path1 \
               path2

MSCFILE_DIRS = path1
MSCFILE_DIRS += path2

My corresponding \mscfile tags then only find the files located under path1.


Although I have not tried it, I suspect the DOTFILE_DIRS property may have the same limitation, however the comments indicate they should support more than one directory.

'The MSCFILE_DIRS tag can be used to specify one or more directories that contain dot files that are included in the documentation (see the \dotfile command).'
'The DOTFILE_DIRS tag can be used to specify one or more directories that contain dot files that are included in the documentation (see the \dotfile command).'
Comment 1 Dimitri van Heesch 2011-04-01 17:56:18 UTC
Hi Aaron,

Turns out to be a copy-paste error:
In src/doxygen.cpp the following is used to iterate over the directories:

  s=mscFileList.first();
  while (s)
  {
    readFileOrDirectory(s,0,Doxygen::mscFileNameDict,0,0,
                        0,0,0,
                        alwaysRecursive);
    s=dotFileList.next();
  }

the dotFileList.next() should have been mscFileList.next()

Should be fixed in the next subversion update.
Comment 2 Dimitri van Heesch 2011-08-14 14:05:21 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.7.5. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.