diff options
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r-- | Source/cmIfCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index d9813be..fa1df27 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -121,9 +121,11 @@ 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 command that can be invoked.\n" + "True if the given name is a file or directory.\n" " IF(EXISTS file-name)\n" " IF(EXISTS directory-name)\n" + "True if the given name is a directory.\n" + " IF(IS_DIRECTORY directory-name)\n" "True if the named file or directory exists.\n" " IF(variable MATCHES regex)\n" " IF(string MATCHES regex)\n" |