summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-11-03 07:55:06 (GMT)
committerGitHub <noreply@github.com>2020-11-03 07:55:06 (GMT)
commit67132b86a0d24cafab0fa400b1433f908efd4113 (patch)
tree11da9b76f166ac361e623fbfb226268b8e6402b6
parent056b291534bc986c0a87653612c5d7d4d5524e21 (diff)
parenta29a2efd84101509aaebc61ecfa9139a45fb5e15 (diff)
downloadDoxygen-67132b86a0d24cafab0fa400b1433f908efd4113.zip
Doxygen-67132b86a0d24cafab0fa400b1433f908efd4113.tar.gz
Doxygen-67132b86a0d24cafab0fa400b1433f908efd4113.tar.bz2
Merge pull request #8151 from albert-github/feature/issue_8129_docu
Documentation correction for CASE_SENSE_NAMES
-rw-r--r--src/config.xml20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/config.xml b/src/config.xml
index b080bec..861b3c6 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -981,12 +981,20 @@ Go to the <a href="commands.html">next</a> section or return to the
<option type='bool' id='CASE_SENSE_NAMES' defval='0' altdefval='Portable::fileSystemIsCaseSensitive()'>
<docs>
<![CDATA[
- If the \c CASE_SENSE_NAMES tag is set to \c NO then doxygen
- will only generate file names in lower-case letters. If set to
- \c YES, upper-case letters are also allowed. This is useful if you have
- classes or files whose names only differ in case and if your file system
- supports case sensitive file names. Windows (including Cygwin) and
- Mac users are advised to set this option to \c NO.
+ With the correct setting of option \c CASE_SENSE_NAMES doxygen will better be able to match the
+ capabilities of the underlying filesystem.
+
+ In case the filesystem is case sensitive (i.e. it supports files in the same directory
+ whose names only differ in casing), the option must be set to \c YES to properly deal with such files
+ in case they appear in the input.
+
+ For filesystems that are not case sensitive the option should be be set to \c NO to properly
+ deal with output files written for symbols that only differ in casing, such as for two classes,
+ one named \c CLASS and the other named \c Class, and to also support references to files without
+ having to specify the exact matching casing.
+
+ On Windows (including Cygwin) and MacOS, users should typically set this option to \c NO,
+ whereas on Linux or other Unix flavors it should typically be set to \c YES.
]]>
</docs>
</option>