summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r--Source/cmIfCommand.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h
index a8a7b81..e49c21f 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -123,12 +123,14 @@ public:
" IF(variable1 OR variable2)\n"
"True if either variable would be considered true individually.\n"
" IF(COMMAND command-name)\n"
- "True if the given name is a file or directory.\n"
+ "True if the given name is a command that can be invoked.\n"
" IF(EXISTS file-name)\n"
" IF(EXISTS directory-name)\n"
- "True if the given name is a directory.\n"
+ "True if the named file or directory exists. "
+ "Behavior is well-defined only for full paths.\n"
" IF(IS_DIRECTORY directory-name)\n"
- "True if the named file or directory exists.\n"
+ "True if the given name is a directory. "
+ "Behavior is well-defined only for full paths.\n"
" IF(variable MATCHES regex)\n"
" IF(string MATCHES regex)\n"
"True if the given string or variable's value matches the given "