diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-22 19:06:52 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-22 19:06:52 (GMT) |
commit | 10efe3b079caf5237e01d31b09f7947c77c7458f (patch) | |
tree | 4df9c11b285a62fdeb1c7868520e9303f95fd26e /Source/cmIfCommand.h | |
parent | 43b9f184c2f9cacce2917577f9469f71f64885c5 (diff) | |
download | CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.zip CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.tar.gz CMake-10efe3b079caf5237e01d31b09f7947c77c7458f.tar.bz2 |
ENH: added some new functionality
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" |